$(".menu ul li a").click(function () {
    $(this).css("color","#64859a");
	elemId = $(this).attr("id");
	$("." + elemId + "ExpandedMenu").slideToggle();
});

function highlightCurrentPage(currentSection, currentPage) {
	$("#menu" + currentSection).css("color","#64859a");
	$(".menu" + currentSection + "ExpandedMenu").show();
	$(".menu a[name='"+currentPage+"']").css("color","#fba164");
}

$(document).ready(function($) {
    $(".subMenu ul li a").click(function (e) {
        e.preventDefault;
        var toLoad = $(this).attr("href");
        $(".subMenu").each(function () {
            $(this).slideUp();
        });
        // Stop doing stuff  
        // Wait 700ms before loading the url 
        setTimeout(function(){window.location = toLoad}, 700);	
    });
});
