// JavaScript Document
$(function(){
  
    var u = $(".hd_L_b").find("input:image");    
    for(var i=0;i<u.length;i++){    
          
        u[i].className="myinput";    
   }    
  

	$(".dqxx").find("dl").each(function(){
		var index = $(this).index();
	    if(index % 3 == 0){
		   $(this).css("margin-right","0")
		   	
		}
	})
	
	
	//导航
		$(".mainnav").each(function(){
	     thisul = $(this);
		 thisul.find("li").each(function(index){
			if(index == 6 || index == 13){
			    $(this).find("em").remove(".shu");	
		    }
	    })	
	})

	
})


