$(function(){
	$("#cart_update").click(function() {
		$("#cart_form").attr("action","/cart/index/update");
		$("#cart_form").submit();
		return false;
	});
	
	$(".view").click(function() {
		addOverlay();
		setWindowPosition();
		$("#window").show();
		$("#load").show();
		$("#pshow").html('');
		$("#size").html('');
		
		var pid = $(this).attr("id");
		$.ajax({
			type: "POST",
			url: baseurl+'index/index/product_id/'+pid,
			data: "product_id="+pid,
			dataType: "json",
			timeout: 20000,
			success: function(data){
				tee.update(data);
			},
			error: function() {
				alert("something wrong");
			}
		});
		return false;
	});
	
});