// JavaScript Document
 url=window.location.href; //http://192.168.0.32/wholesalej/Fashion-Jewelry-385.html
  //var args='http://www.wholesalej.com'.split('/');
  var args=url.split('/');
  var first=args[2].split('.')[0]; //192.168.0.32
  //alert(first); 192
  if( parseInt(first)==first){//是整数
	  var baseURL='http://'+args[2]+'/'+args[3]+'/';  //http://192.168.0.32/wholesalej/
  } else{
	  var baseURL='http://'+args[2]+'/';   //http://www.wholesalej.com/
  }
  //alert(baseURL );

(function($){
$(document).ready(function(){
	$.ajax({
		  type:"POST",
		  url:"index.php?main_page=ajax_cart",
		  success:function(data){
		      $("#head_login").prepend( $(data).filter("#head_login").html()   );
			  $("#buyerCartCountNumber").html( $(data).filter("#shopping_cart_count").html()  );
			  }
		  })
	});
})(jQuery);
var Cart={
	Add:function(pid){
			$.ajax({
				type:"POST",
				url:"index.php?main_page=product_info&action=buy_now&products_id="+pid,
				//data:"main_page=product_info&action=buy_now&products_id="+pid,
				success:function(data){
					$("#product-item-message-"+pid).html('<span style="line-height: 20px; color: rgb(198, 56, 24); font-weight: bold; font-size: 11px;">Add to Cart success</span>');
					$.ajax({
						type:"POST",
						url:"index.php?main_page=ajax_cart",
						success:function(data){
							$("#buyerCartCountNumber").html(data);
						}
					})
				}
			})
		}
	}



