/**
 * @author elz
 */
$(document).ready(function(){

/* ajout des classes pas de survol */
$("#go-part a").addClass("no_hover");
$("#go-pro a").addClass("no_hover");
$("#go-educ a").addClass("no_hover");


/* changement de classe des lien au survol */

/* 1ere vignette */
$("#go-part a").hover(function(){

$(this).removeClass("no_hover");	
   $(this).addClass("hover");
   $("#info-part").height(150).animate({
  height: 'toggle', opacity: 'toggle',  top: 220
}, "slow");
 
      
 },function(){
 	 
	$(this).removeClass("hover");	
	$(this).addClass("no_hover");
   $("#info-part").animate({
  height: 'toggle', opacity: 'toggle',  top: 365
}, "fast");
 });
/* -------------------------------- */ 
 
/* 2nde vignette */
$("#go-pro a").hover(function(){
	
  $(this).removeClass("no_hover");	
   $(this).addClass("hover");
  
  $("#info-pro").height(150).animate({
  height: 'toggle', opacity: 'toggle',  top: 220
}, "slow");
   
 },function(){
 	 
	$(this).removeClass("hover");	
	$(this).addClass("no_hover"); 
	  $("#info-pro").animate({
  height: 'toggle', opacity: 'toggle',  top: 365
}, "fast");
 });
/* -------------------------------- */

/* 3me vignette */ 
$("#go-educ a").hover(function(){
	
  $(this).removeClass("no_hover");	
   $(this).addClass("hover");
  $("#info-educ").height(150).animate({
  height: 'toggle', opacity: 'toggle',  top: 220
}, "slow");

 },function(){
 	 
	$(this).removeClass("hover");	
	$(this).addClass("no_hover");
	  $("#info-educ").animate({
  height: 'toggle', opacity: 'toggle',  top: 365
}, "fast");
 });
/* -------------------------------- */ 
 
 });

