var windowHeightRatio = .65;
function setMapWindow(event) {
    var width = ((document.documentElement.clientWidth * .95) - 380) + 'px';
    
    var height = ((document.documentElement.clientWidth * .95) - 380) * windowHeightRatio + 'px';
    if(document.documentElement.clientWidth < 1008) {
        $("container").style.width = 1008 + 'px';
    } else {
        $("container").style.width = 95 + '%';
    }
    if($("MapDiv")) {
        var MapDiv = $("MapDiv");
        if(document.documentElement.clientWidth >= 1008) {
	        MapDiv.style.width = width;
	        MapDiv.style.height = height;
        } else {
	        MapDiv.style.width = 620 + 'px';
	        MapDiv.style.height = 450 + 'px';
        }
    }
}
Event.observe(window, 'load', function() {
    setMapWindow();
    Event.observe(window, 'resize', setMapWindow);
});

function setMenu() {
    var fullURL = unescape(location.href);
    var pageName = fullURL.substring(fullURL.lastIndexOf("/") + 1, fullURL.length);
        $('bt01').style.backgroundImage = "url('/img/MaxTrax02_05.gif')";
        $('bt02').style.backgroundImage = "url('/img/MaxTrax02_05.gif')";
        $('bt03').style.backgroundImage = "url('/img/MaxTrax02_05.gif')";
        $('bt05').style.backgroundImage = "url('/img/MaxTrax02_05.gif')";
        $('bt06').style.backgroundImage = "url('/img/MaxTrax12_05.gif')";
        $('at01').style.color = "white";
        $('at02').style.color = "white";
        $('at03').style.color = "white";
        $('at05').style.color = "white";
        $('at06').style.color = "white";
        
    if (pageName=='' || pageName=='Default.aspx') {
        $('bt01').style.backgroundImage = "url('/img/MaxTrax03_05.gif')";
        $('at01').style.color = "red";
    } else if (pageName=='myaccount.aspx') {
        $('bt02').style.backgroundImage = "url('/img/MaxTrax03_05.gif')";
        $('at02').style.color = "red";
    } else if (pageName=='register.aspx') {
        $('bt02').style.backgroundImage = "url('/img/MaxTrax03_05.gif')";
        $('at02').style.color = "red";
    } else if (pageName=='registerfbo.aspx') {
        $('bt03').style.backgroundImage = "url('/img/MaxTrax03_05.gif')"
        $('at03').style.color = "red";
    } else if (pageName=='registerfbo.aspx?step=register') {
        $('bt03').style.backgroundImage = "url('/img/MaxTrax03_05.gif')";
        $('at03').style.color = "red";
    } else if (pageName=='fboaccount.aspx') {
        $('bt03').style.backgroundImage = "url('/img/MaxTrax03_05.gif')";
        $('at03').style.color = "red";
    } else if (pageName=='login.aspx') {
		//Login Page
    } else if (pageName=='forgot.aspx') {
		//Forgot Page
    }
    else if (pageName=='legal.aspx') {
		//Legal Page
    }
     else if (pageName=='unsubscribe.aspx') {
		//Unsubscribe Page
    } else if (pageName=='help.aspx') {
        $('bt05').style.backgroundImage = "url('/img/MaxTrax03_05.gif')";
        $('at05').style.color = "red";
    } else if (pageName=='plantrip.aspx' || pageName=='plantrip.aspx#') {
        $('bt06').style.backgroundImage = "url('/img/MaxTrax03_05.gif')";
        $('at06').style.color = "black";
    } else if (pageName=='tripdetail.aspx') {
        $('bt06').style.backgroundImage = "url('/img/MaxTrax03_05.gif')";
        $('at06').style.color = "black";
    }
}