var divAdvertisement;
var divAdvertTitle;
var divAdvertDescription;

$(document).ready(function() 
{	
	divAdvertisement = document.getElementById("slideshow");
	divAdvertTitle = document.getElementById("divAdvertTitle");
	divAdvertDescription = document.getElementById("divAdvertDescription");
		
	if (divAdvertisement)
	{
		$("#slideshow a[rel='slide']").crossf4de({
			callBack: slideshowCallback,
			fadeDuration: 2000,
			pauseDuration: 5000			
		});
	}	
});

function slideshowCallback(Items, Index)
{	
	divAdvertTitle.innerHTML = advertRecords[Index][0];
	divAdvertDescription.innerHTML = advertRecords[Index][1];
}

function country_mouseover(province) {
	var map = document.getElementById("map");
	$(map).stop(true, true).fadeOut('fast', function() {
		map.src = "/site/view/images/" + board_culture + "/" + province + ".png";
		$(map).fadeIn('fast');
	});
}
function country_mouseout(province) {
	//$('#').fadeOut('fast');
} 

function goToProvince(name) {
	var destination = "/work/quebec-immigration.aspx";
	$(".lnkSubPage").each(function () {
		if (this.innerHTML == name)
			destination = this.href;
	});
	document.location = destination;
}
