<!--
var timerID;
var hideMenuId;


function showMenu(menuId) {
    hideMenuGo();
    clearTimeout(timerID);
    document.getElementById(menuId).style.display = "block";
}
function hideMenu(menuId) {
    hideMenuId = menuId;
    timerID = setTimeout("hideMenuGo()", 500);
}
function hideMenuGo() {
    if (hideMenuId) {
        document.getElementById(hideMenuId).style.display = "none";
    }
}

function alignProjectDropdown(menuId) {
    if (menuId=='apartments'){
        if (window.innerWidth) {
            if (window.innerWidth >= 770){
                document.getElementById(menuId).style.left = window.innerWidth / 2 - 20;
            }
            else {
                document.getElementById(menuId).style.left = 785 / 2 - 20;
            }
        }
        else {
            if (document.body.offsetWidth >= 770) {
                document.getElementById(menuId).style.left = document.body.offsetWidth / 2 - 155;
            }
            else {
                document.getElementById(menuId).style.left = 810 / 2 - 155;
            }
        }
    }
}

function fxBG(val1,val2){
	 document.getElementById(val1).style.backgroundColor=val2;
}
function fxURL(val)
{
	document.getElementById('fxtreme').src=val;
}

function onWindowResize() {
    alignProjectDropdown('apartments');
}
window.onresize = onWindowResize;
-->
