
function current(){
		var uri=window.location.href;
		var array=uri.split("cuurent");
	 	var nodes=$("product").childNodes;
		nodes = filterElement(nodes);;
		if(array[1]!=undefined){
			var cut=array[1].substring(1,2);	
			
			var zt=false;
			if(cut>nodes.length){
				alert("非法操作");
				nodes[0].id="dq";
				return ;
			}
			for(var i=0;i<nodes.length;i++){
				if(i==cut){
					zt=true;
					nodes[cut].id="dq";
				}else{
					nodes[i].id="";
				}
			}
			if(!zt){
				alert("非法操作");
				nodes[0].id="dq";
			}
		}else{
			nodes[0].id="dq";
		}
	
}
 
document.onmousedown = norightclick; 
document.oncontextmenu=function(e){return   false;}   