

  
  $(document).ready(function(){ 
    
	// carousel
	/*
    $('#prev').click(function(){
      $('#carousel').stop().scrollTo( {left:'-=600'}, 800, {axis:'x'});
    });
    
    $('#next').click(function(){
      $('#carousel').stop().scrollTo( {left:'+=600'}, 800, {axis:'x'});
    });
    */
    
	// déplacement du carouselle vers la gamme en cours
    //$('#carousel').stop().scrollTo( $("#ee"), 800, {axis:'x'});
    
	// list déroulante choix de langue
    $('.choice-button').click(function(){
			if ($('#lang').css("height") == "16px" )
	      $('#lang').css("height", "auto");
			else
	      $('#lang').css("height", "16px");
    });

	// formulaire de recherche
    $('#query').focus(function(){
      $('#query')[0].value = '';
    });

	// plantes
    $('.plante-scrollto').click(function(){
      $.scrollTo('#'+this.id.split("menu-")[1], 800, {axis:'y'});
    });

	// retour en haut de page
    $('.scrolltotop').click(function(){
      $.scrollTo('#page', 800, {axis:'y'});
    });
		
	// sous menu
    $("#accordion>div").accordion({ active: jQuery.inArray($('#accordion>div>a.active')[0], $('#accordion>div>a')), fillSpace: true });
    
    // Remplacement des titres avec sifr
    if(typeof sIFR == "function"){
      sIFR.replaceElement(named({sSelector:".product-list-les-soins-bio .categorie-content h3.sifr", sFlashSrc:"/swf/gamme.swf", sColor:"#375221", sWmode:"transparent", sFlashVars:"textalign=center"}));
      sIFR.replaceElement(named({sSelector:".product-list-les-soins-expert .categorie-content h3.sifr", sFlashSrc:"/swf/gamme.swf", sColor:"#00575f", sWmode:"transparent", sFlashVars:"textalign=center"}));
      sIFR.replaceElement(named({sSelector:"#headings h2.sifr", sFlashSrc:"/swf/headings.swf", sWmode:"transparent", sColor:"#FFFFFF", nPaddingLeft:20, sFlashVars:"textalign=left"}));
    };
    
  });  
