/* JavaScript for thevillageoftwinlakes.com */

function showElement(id) {
document.getElementById(id).style.visibility = 'visible';
};

function hideElement(id) {
document.getElementById(id).style.visibility = 'hidden';
};

function liveElement(id) {
document.getElementById(id).style.display = 'block';
};

function killElement(id) {
document.getElementById(id).style.display = 'none';
};

function adjustMenu() {

var winWidth = document.body.clientWidth; 
var winAdj = (winWidth - 884) / 2; if (winAdj < 0) { winAdj = 0 };
a2.src = a2off.src; 
a3.src = a3off.src; 
a4.src = a4off.src; 
a5.src = a5off.src; 
hideElement("menu1"); hideElement("menu2"); hideElement("menu3"); hideElement("menu4"); hideElement("menu5");
document.getElementById("menu1").style.left = winAdj + 137;
document.getElementById("menu2").style.left = winAdj + 269;
document.getElementById("menu3").style.left = winAdj + 389;
document.getElementById("menu4").style.left = winAdj + 520;
document.getElementById("menu5").style.left = winAdj + 718;
};

function containsDOM (container, containee) {
var isParent = false;
do {
if ((isParent = container == containee))
break;
containee = containee.parentNode;
}
while (containee != null);
return isParent;
};

function checkMouseEnter (element, evt) {
if (element.contains && evt.fromElement) {
return !element.contains(evt.fromElement);
}
else if (evt.relatedTarget) {
return !containsDOM(element, evt.relatedTarget);
}};

function checkMouseLeave (element, evt) {
if (element.contains && evt.toElement) {
return !element.contains(evt.toElement);
}
else if (evt.relatedTarget) {
return !containsDOM(element, evt.relatedTarget);
}};

a1on = new Image();
a1on.src = "/themes/thevillageoftwinlakes.com/images/menu_home_on.gif";
a2on = new Image();
a2on.src = "/themes/thevillageoftwinlakes.com/images/menu_about_on.gif";
a3on = new Image();
a3on.src = "/themes/thevillageoftwinlakes.com/images/menu_designs_on.gif";
a4on = new Image();
a4on.src = "/themes/thevillageoftwinlakes.com/images/menu_features_on.gif";
a5on = new Image();
a5on.src = "/themes/thevillageoftwinlakes.com/images/menu_plan_on.gif";
a6on = new Image();
a6on.src = "/themes/thevillageoftwinlakes.com/images/menu_contact_on.gif";

a1off = new Image();
a1off.src = "/themes/thevillageoftwinlakes.com/images/menu_home.gif";
a2off = new Image();
a2off.src = "/themes/thevillageoftwinlakes.com/images/menu_about.gif";
a3off = new Image();
a3off.src = "/themes/thevillageoftwinlakes.com/images/menu_designs.gif";
a4off = new Image();
a4off.src = "/themes/thevillageoftwinlakes.com/images/menu_features.gif";
a5off = new Image();
a5off.src = "/themes/thevillageoftwinlakes.com/images/menu_plan.gif";
a6off = new Image();
a6off.src = "/themes/thevillageoftwinlakes.com/images/menu_contact.gif";