$(document).ready(function(){
	$('#boxRecherche input').blur(function(){
		if ($(this).val() == '') {
			$(this).val('Recherche');
		}
	});
	$('#boxRecherche input').focus(function(){
		if ($(this).val() == 'Recherche') {
			$(this).val('');
		}
	});
	
	//Box Search Shop
	$('#shopSearch input').blur(function(){
		if ($(this).val() == '') {
			$(this).val('Code Postal');
		}
	});
	$('#shopSearch input').focus(function(){
		if ($(this).val() == 'Code Postal') {
			$(this).val('');
		}
	});
	
	sfHover();
	
	$("#imgProduit a").each(function(){
		$(this).fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'titleShow'	:	false
		});
	});
	
	$(".video a").each(function(){
		$(this).fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'titleShow'	:	false
		});
	});
	
	$(".plvPicture a").each(function(){
		$(this).fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'titleShow'	:	false
		});
	});
	
	if ($("a#jeuConcours").length > 0) {
		$("a#jeuConcours").fancybox({
			'scrolling'		: 'no',
			'titleShow'		: false
		});
	}
	

	
	if ($("a#acheter").length > 0) {
		$("a#acheter").fancybox({
			'scrolling'		: 'no',
			'titleShow'		: false
		});
	}
	
});

function sfHover(){
	var sfEls = $('#menu .firstLevel').children('li');
	
	sfEls.each(function() {
		$(this).hover(function() {
			$(this).addClass("sfhover");	
		},function() {
			$(this).removeClass("sfhover");	
		});	
	});
};
