

 $(document).ready(function() {
 

		
 // slide les photos des tabs de l'index
		   $(".stands").hover( 		  
			   function() { $("#slides").stop().animate( { top:"0", left:"-481px" } , 250 )},  function() {}		   
		   );
		
 
		   $(".creaweb").hover( 		   
			   function() { $("#slides").stop().animate( { top:"0", left:"0" } , 250 )	},  function() {}		   
		   );

 
		   $(".creaprint").hover( 		   
			   function() { $("#slides").stop().animate( { top:"0", left:"-962px" } , 250 )	},  function() {}
		   );
		   
		   $(".creaIT").hover( 		   
			   function() { $("#slides").stop().animate( { top:"0", left:"-1443px" } , 250 )	},  function() {}
		   );

// anim fond onglets tabs index
		   $(".tablinks").hover( 
			   function() { $(this).stop().animate( { backgroundPosition:"0 0" } , 200 ); },
			   function() { $(this).stop().animate( { backgroundPosition:"0 49px" } , 200 ); }    
		   );




// Rollover barre services sur index
		   $(".dservhoriz > div").hover(  function() { $(this).css( {'background-position':'-340px bottom' }  )	},
			   function() {$(this).css( {'background-position':'-50px bottom' }  )} );


// etire hauteur elements du menu
		   $(".expand").hover( 
			   function() { $(this).animate( { lineHeight:"70px" } , 200 ); },
			   function() { $(this).animate( { lineHeight:"45px" } , 200 ); }
		   );


// fleches en bg des blocs liens
		   $(".listsites").hover( 		   
			   function() { 
					$(this).stop().animate( { backgroundPosition:"0 49px" } , 200 );					
			   },
			   function() { 						
					$(this).stop().animate( { backgroundPosition:"0 75px" } , 200 )
			   }
		   );

// systeme d'onglets pour la zone de texte de l'index. 

$(".wraponglets > div").hide();
$("#ongletprintdiv").show();

$("a.pickonglet").click( function() { 
								  
		$(".pickonglet").addClass("pickoff");		
		$(this).removeClass("pickoff");					  
		$(".wraponglets > div").hide();
		$("#"+this.id+"div").show(); 
		return false;
	} );







			
		   
   
 });

	  