$(function(){
	$(".fzjgn span").click(function(){
		$(this).attr("class","fztab_on");
		$(this).siblings().attr("class","fztab");
		var c = $(this).attr("id");
		$("#tabs div").hide(); 
		$("#tab"+c).show();
	});
	
	$("#login").click(function(){
		//var w = parent.document.body.scrollWidth;
		//var h =parent.document.body.scrollHeight;
		//var ww = parent.document.body.clientWidth; 
		//var hh = parent.document.body.clientHeight; 
		//var div=document.createElement("<div id='layer' style='position:absolute;visibility:visible;background:#e4edf9;filter:alpha(opacity=90);z-index:999;left:0;top:0px;width:"+w+"px;height:"+h+"px;'></div>"); 
	  	//div.innerHTML="<div style='text-align:center;width:300px;height:150px;position: absolute;top:"+hh/2+";left:"+(ww/2-120)+"'><form  action='/swordcms/action/memberlogin' id='submitform' name='submitform' method='post'><span style='font-size:14px'>用户名：</span><input type='text' name='name' id='name' style='width:120px'><br /><span style='font-size:14px'>密&nbsp;&nbsp;码：&nbsp;&nbsp;</span><input type='password' name='password' style='width:120px' id='password'><br /><br /><input style='margin-left:90px' type='button' onclick='stl()' value='登陆'><input style='margin-left:10px' type='button' onclick='closedv()' value='取消'></form></div>";
	  	//document.getElementById("dbody").appendChild(div); 
	});
	   $("#navigation ul li:has(div)").hover(function(){
			$(this).children(".cdv").stop(true,true).slideDown(400);
        },function(){	       
		  $(this).children(".cdv").stop(true,true).hide();//slideUp("fast");
		});
	   $(".navigations ul li:has(div)").hover(function(){
		$(this).children(".cdv").stop(true,true).slideDown(400);
        },function(){	
       	   $(this).children(".cdv").stop(true,true).hide();//slideUp("fast");
		});

$("#gdgg").hover(function(){
			$(this).attr("src","../images/gdggr.jpg");
        },function(){	       
		  	$(this).attr("src","../images/gdgg1.jpg");
		});

var cn = $("#cname").text();
cn = $.trim(cn);
$(".red_01 a").each(function(){ 
  if($(this).text()==cn){
 	$(this).parent().parent().parent().parent().attr("background","../images/two_42_on.jpg");
  }else if($(this).text()==cn.substring((cn.length-2))){
 	$(this).parent().parent().parent().parent().attr("background","../images/two_42_on.jpg");
  }
}); 
})
	
function stl(){
$.ajax({
   url: "/swordcms/action/loginmember",

  data: {name:$("#name").val(),password:$("#password").val()},
    success: function(html){alert(html);
    	window.location="/swordcms/theme/dangzheng/dangzheng.jsp"
     }
 }); 
}
function closedv(){
$('#layer').remove();
}

         function setTab(n){ 
             var tli=document.getElementById("menu").getElementsByTagName("a");   
             var mli=document.getElementById("tabs").getElementsByTagName("div"); 
             for(i=0;i<tli.length;i++){   
            //  mli[i].style.display=i==n?"block":"none";  
			  if(i==n){
			  	 mli[i].style.display="block";
			  } else {
			  	 mli[i].style.display="none";
			  }
             }   
        }            
