
function GetPopUp(index)
{
	document.getElementById('popup').style.display='block';
	show_shadow();
}
function hidePopUp()
{
	document.getElementById('popup').style.display='none';
	hide_shadow();
}

$(document).ready(function(){

    $('#r_menu a,#h_main_menu a,#h_context_menu a,#f_menu a').each(function (i) {
        var reg = $(this).attr('href');
        var str = location.pathname;

        if(str.length==reg.length)
        {
            if (str==reg)
            {
                $(this).attr('class','select');
            }
        }
        else
        {
            if (str.search(reg)>=0&&reg!='/')
            {
                $(this).attr('class','select');
            }
        }
    });

});

