$(document).ready(function(){
	StartSlideShow();
});

/* Image Map */
function loadImageMap(country)
{
	var newImage = $('#hiddenmaps .'+country).attr('src');
	$('#imagemapimg').attr('src',newImage);
}	

/* Image Switch */
var Idx = 1;
var IntervalKey;

var ChangeImage = function(){
	//If the image still animating, stop it and start the new one
	$("#MainImage").ImageStop(true,true);
	$("#MainImage").ImageSwitch({
		Direction: "DownTop",//RightLeft,LeftRight,TopDown,DownTop
		Type: "ScrollOut",//"FlyIn",//"FadeIn",//"FlyIn",//"FlipOut",
		NewImage: $(".TnImage").eq(Idx).attr("src"),
		Speed:1000
	});		
	$("#imagetext h2").html($(".TnTexte p.h2").eq(Idx).html());
	$("#imagetext h3").html($(".TnTexte p.h3").eq(Idx).html());
	Idx++;
	
	var nbImg = $("#ThumbnailDiv img").size();
	if(Idx>nbImg-1){
		Idx = 0;
	}

};	

function StartSlideShow(){
	IntervalKey = setInterval(ChangeImage,5000);					
};
	

	
