// JavaScript Document
function update_cart(product_id)
{
	$.post("http://abellasdesigns.com/jewelry_store/add_to_cart/"+product_id, { func: "info_title" },
	function(data)
	{	
	
		$('#total_items_row').show();
		$('#total_price_row').show();
		$('#total_items').html(data.total_items);
		$('#total_price').html('$'+data.total_price);
		$('#'+product_id+'message').show('fast',function()
		{
			setTimeout(function() 
			{
      			$('#'+product_id+'message').hide('slow');
			}, 1000);
		});
		/*
		$("<span/>").dialog(
		{ 
			width: data.width,
			height: data.height,
			modal: true, 
			overlay: 
			{ 
				opacity: overlay_opacity, 
				background: overlay_color 
			} 
			
		}).html('<b>text</b>');
		$('.ui-dialog-content').replaceWith('<div class="ui-dialog-content">'+data.html+'</div>');
		*/
	
	}, "json");
}
