//滑动门
function setTab(name,cursel,n,currentClass,otherClass){
for(i=1;i<=n;i++){
var menu=document.getElementById(name+i);
var con=document.getElementById("con_"+name+"_"+i);
menu.className=i==cursel? currentClass:otherClass;
con.style.display=i==cursel?"block":"none";
}
}
function loadDiggById(id){
	
  $("#digg").html("<img src='../../21lunwen/web/images/load.gif' boder='0' />") ;
  $("#bury").html("<img src='../../21lunwen/web/images/load.gif' boder='0' />") ;
  $.ajax({
    url: '../../21lunwen/web/digg.php?id='+id,
    type: 'GET',
    timeout: 2000,
	dataType:'json',
    error: function(){
      
    },
    success: function(data){
		oFun1="loadDiggBury('"+id+"','digg',"+data.digg+","+data.bury+")";
		oFun2="loadDiggBury('"+id+"','bury',"+data.digg+","+data.bury+")";
	$("#digg").html("<a href='#' id='digged' onclick="+oFun1+" class='link_b08'><img src='../../21lunwen/web/images/icon_idea.gif' border='0'/>顶</a>("+data.digg+")");
    $("#bury").html("<a href='#' id='buried' onclick="+oFun2+" class='link_b08' ><img  src='../../21lunwen/web/images/icon_question.gif' border='0'/> 踩</a>("+data.bury+")");

    }
});
}

function loadDiggBury(id,t,digg,bury){
   if(t=="digg"){
	digg=digg+1;
	alert("谢谢你了！")
	}else {
	bury=bury+1;
	alert("踩了我 呵呵！")
	}
	
 $.ajax({
    url: '../../21lunwen/web/diggUpdate.php?id='+id+'&digg='+digg+'&bury='+bury,
    type: 'GET',
    timeout: 1000,
	dataType:'html',
    error: function(){
       
    },
    success: function(data){
	$("#digg").html('<img src="../../21lunwen/web/images/icon_idea.gif" border="0"/>顶('+digg+")");
    $("#bury").html('<img  src="../../21lunwen/web/images/icon_question.gif" border="0"/> 踩('+bury+")");

    }
});

}
