
function top_menu(url)
{
	var siteURL = "http://eshop.zishen.com";
	//var siteURL = "http://116.121.60.163";

	switch(url){
	  	case "home" :
			location.href= siteURL + "/";  // È¨
	  		break;
	  	case "zishen_woman_cate" :
			location.href= siteURL + "/category/goods/goodslist.asp?brand_code=ZL";  //Áö¼¾¿ì¸Õ Ä«Å×°í¸®
	  		break;
	  	case "zishen_homme_cate" :
			location.href= siteURL + "/category/goods/goodslist.asp?brand_code=ZM";  //Áö¼¾¿È¹Ç Ä«Å×°í¸®
	  		break;
	  	case "zishen_golf_cate" :
			location.href= siteURL + "/category/goods/goodslist.asp?brand_code=ZS";  //Áö¼¾°ñÇÁ Ä«Å×°í¸®
			break;			
	  	
		case "new_item" :
			location.href= siteURL + "/plan/new_item/";  //½Å±Ô»óÇ° Ä«Å×°í¸®
			break;			
	  	case "best_item" :
			location.href= siteURL + "/plan/best_item/";  //º£½ºÆ®»óÇ° Ä«Å×°í¸®
			break;			
	  	case "review" :
			location.href= siteURL + "/plan/review/";  //»óÇ°Æò Ä«Å×°í¸®
			break;			
	  	case "onsale_item" :
			location.href= siteURL + "/plan/onsale_item/";  //¿Â¼¼ÀÏ Ä«Å×°í¸®
			break;			
	  	case "event" :
			location.href= siteURL + "/event/";  			//ÀÌº¥Æ® Ä«Å×°í¸®
			break;			
	  	
		
		default :
		
	  	break;
  	}

}