$(document).ready(function () {

    

    $(".m1st li > a").click(function () {
        $(".m1st li > a").next().hide("fast"); /*Hides all previously expended menus*/
        $(this).next().slideToggle("fast"); /*Expands current menu*/
    });



});

/* Set selected on current page*/
$(function () {
    $page = $.url().attr('file');
    if (!$page) {
        $page = 'default.aspx';
    }
    $('.m1st li > a').each(function () {
        var $href = $(this).attr('href');
        if (($href == $page) || ($href == '')) {
            $(this).addClass('selected');
        } else {
            $(this).removeClass('selected');
        }
    });
});


