$(function() {
	//---------------------------------------------------
	// Background resizable
	//---------------------------------------------------
	$NumerBg	= 1;
	$("body").ezBgResize({
		img : "images/galerie-tornabuoniart-BG"+$NumerBg+".jpg",
		center  : true
	});
	
	//---------------------------------------------------
	// Logo
	//---------------------------------------------------
	$('#wraper-h1 h1').mouseover(function() {
		$('#wraper-h1').animate({
	    	opacity: 0.7
	    	}, 500);
	});
	$('#wraper-h1 h1').mouseout(function() {
		$('#wraper-h1').animate({
	    	opacity: 1
	    	}, 480);
	});
		
	//---------------------------------------------------
	// Menu
	//---------------------------------------------------
	$('#menu ul li.menu a').mouseover(function() {
		$(this).animate({
		    paddingLeft: '+=7',
			}, 100);
	});
	$('#menu ul li.menu a').mouseout(function() {
		$(this).animate({
		    paddingLeft: '5',
			}, 80);
	});
	$('#menu ul li.sous-menu a').mouseover(function() {
		$(this).animate({
		    paddingLeft: '+=7',
			}, 100);
	});
	$('#menu ul li.sous-menu a').mouseout(function() {
		$(this).animate({
		    paddingLeft: '15',
			}, 80);
	});
	
	//---------------------------------------------------
	// Formulaire newsletter
	//---------------------------------------------------
	$('#footer form #newsletter').hover(function() {
		if ( $('#footer form #nom').css('display') == 'none' )
		{
			$('#footer form #newsletter').attr("value", "Email");
			$('#footer form #newsletter').attr("onfocus", "if (this.value=='Email') this.value='';");
			$('#footer form #newsletter').attr("onblur", "if (this.value=='') this.value='Email';");
			$('#footer form #newsletter').hide();
			
			$('#footer form #nom').fadeIn(1200);
			$('#footer form #prenom').fadeIn(1500);
			$('#footer form #newsletter').fadeIn(1800);
		}
	});
	
	//---------------------------------------------------
	// Validation formulaire de newsletter
	//---------------------------------------------------
	$("#newsletter_form").validate({
		rules: {
			newsletter: {
				required: true,
				email: true
			},
			nom: "required",
			prenom: "required"
		},
		messages: {
			newsletter: {
				required: "",
				email: ""
			},
			nom: "",
			prenom: ""
		}
	});
});

//---------------------------------------------------
// Function pour changer les background
//---------------------------------------------------
function changeBackground (id)
{
	$('#jq_ez_bg img').fadeOut(1000, function() {
		$('#jq_ez_bg img').attr('src', 'images/galerie-tornabuoniart-BG'+id+'.jpg');
		$('#jq_ez_bg img').fadeIn(1000);
	});
	$('ul.change-background a').removeClass('actif');
	$('ul.change-background a.background-'+id).addClass('actif');
}
function changeBackgroundLoading (id)
{
	$('#jq_ez_bg img').fadeOut(0, function() {
		$('#jq_ez_bg img').attr('src', 'images/galerie-tornabuoniart-BG'+id+'.jpg');
		$('#jq_ez_bg img').fadeIn(0);
	});
	$('ul.change-background a').removeClass('actif');
	$('ul.change-background a.background-'+id).addClass('actif');
}
