//$(document).ready(function(){
$(function () {
	$("#mapmainimg").fadeIn('1500');
	$(".maphoverimg").show();
	$(".maphoverimg").hover(
		function(){
			$(".mapimg").stop().hide();
			var navto = $(this).attr("id");
			if(navto=='europehover')
				$('#europemap').show();
			else if(navto=='russiahover')
				$('#russiamap').show();
			else if(navto=='fareasthover')
				$('#fareastmap').show();
			else if(navto=='southeastasiahover')
				$('#southeastasiamap').show();
			else if(navto=='australasiahover')
				$('#australasiamap').show();
			else if(navto=='middleeasthover')
				$('#middleeastmap').show();
			else if(navto=='africahover' || navto=='africahover2')
				$('#africamap').show();
			else if(navto=='northamericahover')
				$('#northamericamap').show();
			else if(navto=='caribbeanhover')
				$('#caribbeanmap').show();
			else if(navto=='southamericahover')
				$('#southamericamap').show();
		},
		function () {
			$(".mapimg").hide();
			$("#mapmainimg").show();
		}
	);
});
