
function getLink() {
var theLinkEl = document.getElementById('siteLink');
var theLink = theLinkEl.href;
//window.alert(theLink);

var thePath = location.pathname;
var newLink = thePath.substring(9);

//window.alert(thePath);
//window.alert(newLink);
theLinkEl.href = theLink+newLink;
return false;
}











