checkMobileVersion();
function checkMobileVersion()
{    
    ScreenWidth = screen.width;

    BrowserWidth =  window.innerWidth;
    BrowserHeight = window.innerHeight;    

    var browser = navigator.userAgent.toLowerCase();   alert('as');
    if( ((BrowserWidth <= 320) && (BrowserHeight <= 480)) || (browser.indexOf('iPhone') != -1)){        
        document.location.href = "http://m.bestessays.com" + document.location.pathname + document.location.search;
    }
}

var menuTimeot = new Array();

function showDropDown(id, display) {

    if (display){
        for (i in menuTimeot){
            clearTimeout(menuTimeot[i]);
            document.getElementById(i).style.display = "none";
        }
        if (document.getElementById(id)){
            document.getElementById(id).style.display = 'block';
        }
    } else {
        if (document.getElementById(id)){
            menuTimeot[id] = setTimeout('document.getElementById("'+id+'").style.display = "none"', 2000);
        }
    }
}


