$(document).ready( function()
{
	// -----------------------------------------------------------------------------------------
	// Effets sur les formulaires du site Internet
	// -----------------------------------------------------------------------------------------
	
	var backgroundColor_init = "#ffffff"; // Couleur de fond initiale des formulaires
	var borderColor_init = "#cccccc"; // Couleur de bordure initiale des formulaires
	
	var backgroundColor_modif = "#fff6e9"; // Couleur de fond modifiée des formulaires
	var borderColor_modif = "#F29400"; // Couleur de bordure modifiée des formulaires
		
		
	$("input, textarea").focus(function(){
		$(this).animate({ 
			backgroundColor: backgroundColor_modif,
			borderLeftColor: borderColor_modif,
			borderRightColor: borderColor_modif,
			borderTopColor: borderColor_modif,
			borderBottomColor: borderColor_modif
		  }, 250 );
	});
	 
	$("input, textarea").blur(function(){
		$(this).animate({ 
			backgroundColor: backgroundColor_init,
			borderLeftColor: borderColor_init,
			borderRightColor: borderColor_init,
			borderTopColor: borderColor_init,
			borderBottomColor: borderColor_init
		  }, 250 );
	});
	
	$(".submit").mouseover(function(){
		$(this).animate({ 
			backgroundColor: backgroundColor_modif,
			borderLeftColor: borderColor_modif,
			borderRightColor: borderColor_modif,
			borderTopColor: borderColor_modif,
			borderBottomColor: borderColor_modif
		  }, 250 );
	});
	 
	$(".submit").mouseout(function(){
		$(this).animate({ 
			backgroundColor: backgroundColor_init,
			borderLeftColor: borderColor_init,
			borderRightColor: borderColor_init,
			borderTopColor: borderColor_init,
			borderBottomColor: borderColor_init
		  }, 250 );
	});
	

	// -----------------------------------------------------------------------------------------
	// Scroll
	// -----------------------------------------------------------------------------------------
	
	// Permet de remonter en haut de la page :
	$("#haut_de_page a").click(function(){
		jQuery("html, body").animate({ scrollTop: 0 }, "slow");
		return false;
	});
	
	// -----------------------------------------------------------------------------------------
	// Effets sur les images des galeries de photos :
	// -----------------------------------------------------------------------------------------

	$(".galerie_photos img").mouseover(function(){
	   $(this).animate({
		opacity: 0.8
	  }, 200 );
	});

	$(".galerie_photos img").mouseout(function(){
	   $(this).animate({
		opacity: 1
	  }, 200 );
	});
	
	// -----------------------------------------------------------------------------------------
	// Corners
	// -----------------------------------------------------------------------------------------
	
	// $(".tableau_de_bord, .pb_droit, .confirme, .erreur, .informations, .chargement, .ajoute, .mots_cles, .pager").corner("8px");
	// $("#formulaire_de_recherche input").corner("10px");

	// -----------------------------------------------------------------------------------------
	// LightBox
	// -----------------------------------------------------------------------------------------

	$("a.affichephoto, a.affichetoi").lightBox();
	
	// -----------------------------------------------------------------------------------------
	// Autres fonctions
	// -----------------------------------------------------------------------------------------
	
	// initialisation_de_la_taille_de_police();
});
