/*==================================================================================*/
function restaurantWaitAndHide(aindex){
	setTimeout("restaurantAnimate("+parseInt(aindex+1)+")",3000);
	setFollowLink(1);
}
/*==================================================================================*/


/*==================================================================================*/
function restaurantNewPicture(aindex){
	$("#imagerestaurant").unbind().animate({opacity:1},1000,"linear",function(){restaurantWaitAndHide(aindex);});
}
/*==================================================================================*/



/*==================================================================================*/
function restaurantChangePicture(aindex,asrc){
	$("#imagerestaurant").bind("load",function(e){restaurantNewPicture(aindex)});
	$("#imagerestaurant").attr("src",asrc);
}
/*==================================================================================*/


/*==================================================================================*/
function restaurantAnimate(aindex){
	setFollowLink(0);
	v=$("#imagesrestaurant").children();
	if(aindex>v.length-1){aindex=0;}
	p="./media/random/"+$("#imagesrestaurant"+" li:eq("+parseInt(aindex)+")").text();
	$("#imagerestaurant").animate({opacity:0},1000,"linear",function(){restaurantChangePicture(aindex,p);});
}
/*==================================================================================*/


/*==================================================================================*/
function setFollowLink(aactive){
	$(".langue").followLink({active:aactive,position:"bottom",color:"#00FF00"});
	$(".optionmenu").followLink({active:aactive,position:"left",color:"#00FF00"});
}
/*==================================================================================*/


/*==================================================================================*/
$(document).ready(function(){
	setFollowLink(1);
	restaurantAnimate(0);
 });
 /*==================================================================================*/

