function default_onload() {
    document.getElementById('AboutMenuItem').onclick = AboutMenuItem_onclick;
    document.getElementById('CapabilitiesMenuItem').onclick = CapabilitiesMenuItem_onclick;
    document.getElementById('ServicesMenuItem').onclick = ServicesMenuItem_onclick;
    document.getElementById('ContactMenuItem').onclick = ContactMenuItem_onclick;
    if (document.getElementById('LoginMenuItem') != null)
		document.getElementById('LoginMenuItem').onclick = LoginMenuItem_onclick;
    if (document.getElementById('InPartnershipWithBox') != null)
		document.getElementById('InPartnershipWithBox').onclick = InPartnershipWithBox_onclick;
    if (document.getElementById('HomeMenuItem') != null)
		document.getElementById('HomeMenuItem').onclick = HomeMenuItem_onclick;
}
function AboutMenuItem_onclick() {
    window.location = '/About/';
}
function CapabilitiesMenuItem_onclick() {
    window.location = '/Capabilities/';
}
function ServicesMenuItem_onclick() {
    window.location = '/Services/';
}
function ContactMenuItem_onclick() {
    window.location = '/About/Contact.aspx';
}
function LoginMenuItem_onclick() {
    window.location = '/Login.aspx';
}
function HomeMenuItem_onclick() {
    window.location = '/Default.aspx';
}
function InPartnershipWithBox_onclick() {
    window.location = 'http://www.vipdestinationspecialists.com/';
}