// JavaScript Document - Drop-menu Redirect Function

function jumpLink(loc) {
	newLoc = "http://" + document.domain + loc;
	//alert(newLoc);
	window.location = newLoc;
};