$(document).ready(function(){
	$('#cart').click(function(){
		cart_show();
	});

	$('#cart_close').click(function(){
		cart_hide();
	});
	$('#cart_empty').click(function(){
		del_cart('delall');
	});
});


function cart_show(){
	$('#Layer1').show();
	clean_cart();
	load_cart();
}

function cart_hide(){
	$('#Layer1').hide();
}

function del_cart(sku){
	$('#cart_alert').show();
	$.post("/del_cart.php",{SKU:sku},function(data,textStatus){
	if(textStatus=='success')	
		{
			clean_cart();
			load_cart();
			$('#cart_alert').hide();
		}
	},'json');
}

function load_cart(){
	$('#cart_alert').show();
	$.post("/get_cart.php",{id:"0"},function(data,textStatus){
	if(textStatus=='success')	
		{
			$.each(data.pdata,function(i,n){
				$('#tit_cart').append(
				'<ul><li>'+n.name+'<a href="#" onClick="del_cart(\''+n.SKU+'\')"><img src="/images/remove.png" width="12" height="12" /></a></li><li><img src="/product_images/'+n.pic_id+'/0/3.jpg" width="80" height="80" /></li><li>￡'+n.price+'</li></ul>');
			});	
			$('#cart_count').empty().append("("+data.total+")");
			$('#cart_alert').hide();
		}
			},"json");	
}

function clean_cart(){
	$('#tit_cart').empty();
}
