﻿/* function to change the css of menu active */
//$(document).ready(function () {
//    ///debugger;
//    $("#[id*='menu_']").each(function () {
//        //debugger;
//        var id = $(this).attr("id");
//        $("#" + id).click(function () {
//            changeCSS($("#" + id));
//        });

//    });
//});

function changeCSS(controlid,obj) {
    //debugger;
    alert(obj);
    $(controlid).addClass('active');
    $("#[id*='menu_']").each(function () {
        //debugger;
        var id = $(this).attr("id");
        if (id != $(controlid).attr("id")) {
            $("#" + id).removeClass('active');
        }
    });
}
/* function to change the css of menu active */
