 var pathname = window.location.pathname;
 if( pathname != "" && pathname.indexOf("ys") > -1 ){
 	document.write('<script language=\"javascript\" src=\"' + window.location.protocol + '//' + window.location.host + window.location.pathname.substring(0,4) +'scripts/constant.js\"></script>');
 }else{
 	document.write('<script language=\"javascript\" src=\"' + window.location.protocol + '//' + window.location.host + '/scripts/constant.js\"></script>');
 }

$(document).ready(function(){
	
	//首页导航样式
	var pathname = window.location.pathname;
 	var path = window.location.pathname.substring(4,pathname.indexOf(".html"));
	if(path !=""){
		if(path == "categories"){
			jQuery("#category").attr("class","t");
		}
		if(path == "default"){
			jQuery("#default").attr("class","t");
		}
		if(path == "defaultbrand"){
			jQuery("#defaultbrand").attr("class","t");
		}
		if(path == "dp"){
			jQuery("#news").attr("class","t");
		}
		if(path == "groupon"){
			jQuery("#groupon").attr("class","t");
		}
	}
	
	/*//会员信息
	if($(".welcome")!= "Undefined"){
		if($(".welcome").html()==""){
			alert("dds");
			$(".welcome").hide();
		}
	}*/
	//鼠标经过购物车
	$(".li_1").hover(
		function(){
			$("#o-mycart-list").fadeIn("slow");
			setTimeout(function(){ jQuery("#o-mycart-list").fadeOut("slow");}, 10000);
		},
		function(){
			$("#o-mycart-list").fadeOut("slow");
		}
	);
	//删除商品
});

function removegoods(goodscode,count){
	$.ajax({
		 url:webpath+'/shoppingCart.do?method=removeGoods',   
         data:{id:goodscode,count:count},   
         error:function(){
			alert("error1");
         },   
         success:function(data){  
	         if(data!=''){
	         	parent.location.reload();
		        $("#o-mycart-list").fadeOut("slow");
	         }else{
	         	alert("error2");
	         }
         }
		       
	});
}

