var $j = jQuery.noConflict();

$j(function(){
			
			//Rollover Photo Accueil
			
			$j(".photoid").hover(
				function(){
					//Mouse over
					
					$j(this).attr("src","cv/gregory_hoepffner_over.png");
					
					
				},
				function(){
					//Mouse out
					
					$j(this).attr("src","cv/gregory_hoepffner.jpg");
					
					
				}
			);
			
			
			//Rollover Tn Print
			
			$j(".screenprint, .screenprintend").hover(
				function(){
					//Mouse over
					
					$j(this).stop().animate({opacity: 0.5,}, 200 );
					
					
				},
				function(){
					//Mouse out
					
					$j(this).animate({opacity: 1,}, 300);
					
					
				}
			);
			
			
			//Rollover Twenga screens
			
			$j(".screentwenga, .screentwengaend, .screen").hover(
				function(){
					//Mouse over
					
					$j(this).animate({opacity: 0.7,}, 150 );
					
				},
				function(){
					//Mouse out
					
					$j(this).animate({opacity: 1,}, 300);
					
					
				}
			);
			
});
