$(window).ready(function(){
	var searchLabel=$('.searchbar input').attr('value');
	$('.searchbar input').click(function(e){
		if($(this).attr('value') == searchLabel){
			$(this).attr('value','');
		}
	});
	$('.searchbar input').focusout(function(e){
		if($(this).attr('value')==''){
			$(this).attr('value', searchLabel);
		}
	});
	$('.searchbar a.searchButton').click(function(e){
		e.preventDefault();
		if($('.searchbar input').attr('value') != '' && $('.searchbar input').attr('value') != searchLabel){
			window.location.href=$(this).attr('href')+$('.searchbar input').attr('value');
		}
	})
});

function modulePage(){
	var sudoSlider = $('#vehicleSlider').sudoSlider({
		auto:					true,
		pause:				6000,
		controlsShow:	false,
		continuous:		true
	});
	$('#vehicleSlider li').show();
	$('#sendMail').click(function(e){
		e.preventDefault();
		if($('#contactName').attr('value')!='' && $('#contactMail').attr('value')!='' && $('#contactMessage').attr('value')!=''){
			$('#contactForm').submit();
			alert('Message envoy\351!');
			window.location.href='index.php?module=page&action=accueil';
		}else{
			alert('Merci de remplir tous les champs!')
		}
	});
}

function moduleVehicle(){
	$('#picturesGallery a').lightBox();
	$('#picturesGallery a.thumbnail').hover(function(){
		$('#picturesGallery a.thumbnail').removeClass('active');
		$('#picturesGallery a.mainPicture').attr('href', $(this).attr('href'));
		$('#picturesGallery a.mainPicture').children('img').attr('src', $(this).children('img').attr('src'))
		$(this).addClass('active');
	});
}

