var activeLand;
var rootUrl;

function rolloverLand(imgnum) {
	var imgID = 'landmnuitem'+imgnum;
	document.getElementById(imgID).src = rootUrl + 'img/land_mnu_'+imgnum+'_over.png';
}
function rolloutLand() {
	var arLand = document.getElementById("landenmenu").getElementsByTagName("a");
	var imgcountLand = arLand.length;
	for (var i = 0; i < imgcountLand; i++){
		if (activeLand != i) {
			document.getElementById("landmnuitem"+i).src = rootUrl + 'img/land_mnu_'+i+'_idle.png';
		}
	}
}
function activeLandMnuItem(imgnum) {
	activeLand = imgnum;
	var imgID = 'landmnuitem'+imgnum;
	document.getElementById(imgID).src = rootUrl + 'img/land_mnu_'+imgnum+'_over.png';
}

function LoadCountry(CountryCode) {
    if (CountryCode == 'none') {return false;}
    document.location.href = rootUrl + 'bestemming/' + CountryCode + '/home.aspx';
}


if (typeof($) != 'undefined') {
	$(document).ready(function(){

		$('#landenmenu img').mouseout(function(){
			rolloutLand();
		});
		
		$('#landenmenu img').mouseover(function(){
			rolloverLand(this.id.replace('landmnuitem',''));
		});
		
		
		
	});
} else {
	alert ('landenmenu error: jquery was not included!');
}


