// JavaScript Document
function hover(height, margin) {
		document.getElementById('hover-home').style.visibility  = "visible";
		document.getElementById('scale').style.width            = 126 + margin * 126 + 'px';	
}
function hide()
{
	document.getElementById('hover-home').style.visibility = "hidden";
}