$(document).ready(function() {
	

	/******* Highlight Active Links ***********************************************/
    jQuery('UL#mainnav>LI>A').each(function(e) {
        if ((window.location + '').indexOf(this.href) >= 0)
            jQuery(this).addClass("active");
    });
    jQuery('UL.subnav>LI>A').each(function(e) {
    	var myloc = window.location + '';
    	if (myloc.substring(myloc.length-1) == "/")
    		myloc = myloc.substring(0, myloc.length-1);
    		
        if (myloc == this.href)
            jQuery(this).addClass("active");
    });
    
});


