$(document).ready(function(){
	// 层切换 -- 左侧
	$('h3 ul li').hover(function(){
		$(this).removeClass("dfe").addClass("on").siblings().addClass("dfe").removeClass("on");
		var thisid = $(this).attr("id");
		var otherid = $(this).siblings().attr("id");
		$("#div_"+thisid).show();
		$("#div_"+otherid).hide();
	});
	
	// 层切换 -- 中间  --国内国际、文化娱乐
	$('.gn_gj_tit ul li').hover(function(){
		$(this).removeClass("main_bg gn_gj_tit_ico").addClass("main_bg gn_gj_tit_ico_on").siblings().addClass("main_bg gn_gj_tit_ico").removeClass("main_bg gn_gj_tit_ico_on");
		var thisid = $(this).attr("id");
		var otherid = $(this).siblings().attr("id");
		$("#div_"+thisid).show();
		$("#div_"+otherid).hide();
	});
    
	// 层切换 -- 中间  --论坛精华、名博热博
	$('.sed_l_01_r_tit ul li').hover(function(){
		$(this).removeClass("main_bg sed_l_01_r_tit_ico").addClass("main_bg sed_l_01_r_tit_ico_on").siblings().addClass("main_bg sed_l_01_r_tit_ico").removeClass("main_bg sed_l_01_r_tit_ico_on");
		var thisid = $(this).attr("id");
		var otherid = $(this).siblings().attr("id");
		$("#div_"+thisid).show();
		$("#div_"+otherid).hide();
	});
});

/*
 * 收藏本站
 */
function addFavorite(url, title) 
{
    try {
        window.external.addFavorite(url, title);
    } 
    catch (e){
        try {
            window.sidebar.addPanel(title, url, '');
        }
    catch (e) {
        showDialog("请按 Ctrl+D 键添加到收藏夹", 'notice');
        }
    }
}
/*
 * 设为首页
 */
function setHomepage(sURL) 
{
    if(window.ActiveXObject)
    {
        document.body.style.behavior = 'url(#default#homepage)';
        document.body.setHomePage(sURL);
    }
    else {
        alert("非 IE 浏览器请手动将本站设为首页");
    }
}


