// JavaScript Document

function mouseoverChange(id) {
	var id2 = "menu_"+id;
	document.getElementById(id).style.backgroundImage = "url(../img/template/dropmenu_bg.jpg)";
	document.getElementById(id).style.color = "#A2ADCB";	
	document.getElementById(id2).style.visibility = "visible";
}

function mouseoutChange(id) {
	var id2 = "menu_"+id;
	document.getElementById(id).style.backgroundImage = "none";	
	document.getElementById(id).style.color = "#FFFFFF";	
	document.getElementById(id2).style.visibility = "hidden";
}

function mouseoverNormal(id) {
	document.getElementById(id).style.backgroundImage = "url(../img/template/dropmenu_bg.jpg)";
	document.getElementById(id).style.color = "#A2ADCB";
}

function mouseoutNormal(id) {
	
	document.getElementById(id).style.backgroundImage = "none";	
	document.getElementById(id).style.color = "#FFFFFF";	
}
function showHouse() {
	document.getElementById("house").style.visibility = "visible";
}
function hideHouse() {
	document.getElementById("house").style.visibility = "hidden";
}