
function getLeaf(url) {
 var splited=url.split('?');
 url=splited[0];
 return url.substring(url.lastIndexOf("/")+1);
} 

$(function(){
if ($("#level1 .splash").children().is("div")){
	$('#rotate').cycle({ 
    fx:    'fade', 
    speed:  500,
	timeout:  8000
 });
	}
	var loc = getLeaf(document.location.href);
	
	$("#Map area").each(function() {
		var url = $(this).attr("title")
		$(this).attr("href", "");
		$(this).attr("href", "http://www.stewartengineers.com/" + url +"/"+ loc);
		
	});

});