$(function(){
    //浮动QQ
	$("#qq").float({
		delay : 500,//延迟
        offset:{
        right:10
        },
		position:"rm" //位置
	});
    //疾病导航
	$("div[id=side_jbdh]>h3").hover(function(){
		$("div[id=side_jbdh]>h3").attr("className","jbdh_h3_1");
		$("div[id=side_jbdh]>h3").next("div").attr("className","none");
		$(this).attr("className","jbdh_h_1");
		$(this).next("div").attr("className","show");
	},function(){
		//$(this).next("div").attr("className","none");
	});
    //图片浏览
    $(".lightbox").lightbox({
        fitToScreen: true,
        imageClickClose: true
    });
});
function closeQQ(){
    $("#qq").hide();
}







