// JavaScript Document 
$(function(){
/*member*/
	/*我的空间*/
	$(".concern_img")
	.bind("click",function(){
		toggleaction("",".clickbar");			
	});
	/*订单详细*/
	$(".order")
	.bind("click",function(){
			var target =$(this) ;
			if ($(".order").text()=="【全部展开】"){
				$(".uaddress").find(".togglecon").show();
			}else{
				$(".uaddress").find(".togglecon").hide();
			}
		  	togglelink(".order","a.ordertoggle","【全部展开】","【全部收缩】");
			togglelink(".uaddress","a.toggle","+展开","-收缩");
			//toggleaction(".uaddress",".togglecon");
			//if () {}
			
	});		
	$(".uaddress")
	.bind("click",function(){
				var target =$(this) ;
		  		togglelink(target,"a.toggle","+展开","-收缩");
		  		toggleaction(target,".togglecon");
	});
	
 	/*
	
	$(".comparewin .winclose")
		.bind("click",function(){
		
		if($(".compare-helper li").length !=0 ){
			$(".compare-helper").empty(); 
			$.cookie('gird_cookie',null);
			incont = 0;
			$(".btn_disable").removeClass("btn_disable");
			$('.comparewin').hide("clip",500);
		}
	});
	*/
	
});
