﻿var vpath = '';

function setMargins() {
    try {
        var height_l = $('div#homeContent').height();
        var height_r = $('div#homeMargin').height();
        if (height_r < height_l) $('div#homeMargin').height(height_l);
    }
    catch(ex) {}
}

function setNavigation() {
    var path = location.pathname.substring(vpath.length).toLowerCase();
    
    if (path == '/' || path == '/default.aspx') $('div#menu_home a').attr('class', 'menu_on');
    else if (path == '/services.aspx') $('div#menu_services a').attr('class', 'menu_on');
    else if (path == '/events.aspx') $('div#menu_events a').attr('class', 'menu_on');
    else if (path == '/faq.aspx') $('div#menu_faq a').attr('class', 'menu_on');
    else if (path == '/about.aspx') $('div#menu_about a').attr('class', 'menu_on');
    else if (path == '/contact.aspx') $('div#menu_contact a').attr('class', 'menu_on');
}

$(document).ready(setMargins);
$(document).ready(setNavigation);
