/***************************************************************/
/*
/*
/*
/*
/***************************************************************/

//Appel du plugin jquery color
/*$.ajax({
	url: "js/coloranimation.js",
	dataType: "script",
	async: false,
	success: function(js){if(jQuery.browser.safari){eval(js);}}
});*/


$(document).ready(function(){ //Définir la fonction de clic
 
	
	//Changer le comportement hover au survol
   $('.clic').hover(function() { //mouse in
		$(this).css({
			'cursor':'pointer'
		});
		if(!jQuery.support.opacity) {
			/*$(this).stop();
			$(this).stop().animate(
				{ 
					
			}, 200);*/
			
			$(this).css({
					'overflow':'visible'
									});
			
			$(this).fadeTo(200,0.6);
		}
		else {
			$(this).stop().animate(
				{ 
				
				'opacity':0.6
			}, 200);
		}

   }, function() { //mouse out
   		if(!jQuery.support.opacity) {
			/*$(this).stop();
			$(this).stop().animate(
	  			{ 
				
				}, 200);*/
			$(this).fadeTo(200,1);
		}
		else {
			$(this).stop().animate(
				{ 
				
				'opacity':1
			}, 200);
		}
   });
   
 });



$(document).ready(function(){
	var open1=false;
    $("#link1").click(function(){
		if(!open1) {
      $("#ss-menu1").animate({"height":"195px"}, "slow");
	  open1=true;
		}
		else {
			 $("#ss-menu1").animate({"height":"0px"}, "slow");
	  open1=false;
		}
    });
	
	
	$("input[name=moteur_recherche]").click(function(){
		if($(this).val()=="Tapez votre recherche..."){
			$(this).val("");
		}
	});
});


