//////////////////////////////////////////////////////////////////////////////////////////////// offre 

offre=new Object();
offre.init=function(){
	
	$("#slideOffre").css("top","250px");
	$("#slideOffre").stop().animate({top: 0});
	
	var $j_object = $("#bts img");
	$j_object.each(function(i){
		
		$(this).css("cursor","pointer");
		$(this).hover(function(){
			
			$("#slideOffre").stop().animate({top: i*-250});
			
		});
		
	});
		
};

//////////////////////////////////////////////////////////////////////////////////////////////// engagements 

engagements=new Object();
engagements.init=function(){
	
	$("#accroche").css("top","280px");
	
	$('#accroche').animate({
		top : 330
	}, 400 );		
};

//////////////////////////////////////////////////////////////////////////////////////////////// reseau 

reseau=new Object();
reseau.init=function(){
	
	var $j_object = $("#zoneCarte div");
	$j_object.each(function(i){
		
		$(this).css("cursor","pointer");
		$(this).hover(function(){
			
			$("#slideProfil").stop().animate({top: (i+1)*-170});
			
		});
		
	});
	
	/*var $d_object = $("#zoneCarteDem div");
	$d_object.each(function(i){
		
		$(this).css("cursor","pointer");
		$(this).hover(function(){
			
			$("#slideDem").stop().animate({top: (i+1)*-170});
			
		});
		
	});*/
		
};
