document.onmousemove = mMove;
document.onmouseup = mUp;


function mMove(e){
	var homeLink = document.getElementById("card1_home_closed");
	var homeLogo = document.getElementById("homeURL");
		// Highlight the image
		homeLink.onmouseover = function(){
			homeLogo.className = "link_home_hover";
			document.body.style.cursor = "pointer";
		}
		homeLink.onmouseout = function(){
			homeLogo.className = "link_home";
			document.body.style.cursor = "default";
		}
		if (homeLink = null)
			return;

}


function mUp(e){
		// link to the other page
		var homeLink = document.getElementById("card1_home_closed");
		var homeLogo = document.getElementById("homeURL");	
		homeLink.onmouseup = function(){
			document.location.href = homeLogo.href;
		}
}


