function initMenu() {
				//显示blog第一个内容简介
				$(".post-intro:first").show();
				//隐藏所有侧栏
	      $("#wenzhang>dd>dl>dd").hide();
				//给侧栏第一个加上样式
				//$("#wenzhang>dd>dl>dt:first").addClass("menu1");	      
	      //打开栏目
	      $("#wenzhang>dd>dl>dd").eq(0).show();
	      //遍历侧栏标题，保证只有一个打开，打开的加上样式，其余的移除样式
	     	$.each($("#wenzhang>dd>dl>dt"), function(){
				$(this).click(function(){
				$("#wenzhang>dd>dl>dd ").not($(this).next()).slideUp();
				$(this).addClass("menu1");
				$("#wenzhang>dd>dl>dt").not($(this)).removeClass("menu1");				
				$(this).next().slideToggle(500);
			});
			});
			
   //评论自动隔行变颜色
   //$(".msg:even").addClass("even"); 

   //鼠标移动上去评论列表颜色变化 
   $(".msg").hover(function(){
   		$(this).addClass("change");
			$(this).children(".msgbar").show(500); 		
   	},
   	function(){
   		$(this).removeClass("change");
			$(this).children(".msgbar").hide(500); 			
   	}); 
 //首页博文简介鼠标移动变色  	
   	   $(".point").hover(function(){
   		$(this).addClass("pointchange");
   	},
   	function(){
   		$(this).removeClass("pointchange");
   	});
   	
//首页简介格式鼠标移动向右
$(".point").hover(function(){
			$(this).stop().animate({marginLeft:"10px"},200);
		},function(){
			$(this).stop().animate({marginLeft:"0px"},200);
		});

//显示发表评论表单
$("#postbox_top").hover(function(){
			$(this).hide(600);
			$("#divCommentPost").show();
		});
		
 //如果支持 this.blur,去除虚线
  $('a,input[type="button"],input[type="submit"]').bind('focus',function(){
  	if(this.blur){
  		this.blur();                
  		};        
  });	
 }
$(document).ready(function() {initMenu();});
