$(document).ready(function() {
	initMap();
});

var curText;

function initMap(){
		$('#popLoctn li').hover(function(){addHover(this);}, function(){removeHover(this);});
}

var addHover = function(elm, isRollover) {
	$(elm).find('.loctnHdr').fadeIn("slow");
	curText=$(elm).find('.lnk').text();
	$(elm).find('.lnk').text('Visit '+curText+' Page');
	elm.style.zIndex='2';
}

var removeHover = function(elm, isRollover) {
	$(elm).find('.loctnHdr').fadeOut("slow");
	$(elm).find('.lnk').text(curText);
	elm.style.zIndex='0';
}
