$(function(){

	$('#cart').dialog({
			bgiframe: true,
			autoOpen: false,
			height: 400,
			width:800,
			modal: true,
	        open: function(ev,ui){
	       
	        },
	        close:function(ev,ui){
	      
	        }
	
	});
	
	$('#msgbox').dialog({
			bgiframe: true,
			autoOpen: false,
			height: 100,
			width:400,
			modal: true,
	        open: function(ev,ui){
	       
	        },
	        close:function(ev,ui){
	      
	        }
	
	});
		
	$('#view-cart').click(
	
		function(e){
			e.preventDefault();
		

			$.ajax({
					method: 'get',url: 'rest.php',data: 'has_items_in_cart',
					dataType: 'json',
					beforeSend: function(){  },
					complete: function(){},
					success: function(data){
						if(data.hasItems =='yes'){
							$('#cart').dialog('open').load('cart.php');
						}else{
							// show empty cart
							$('#ui-dialog-title-msgbox').html('Message');
							$('#msgbox').html('<div class="ui-state-highlight ui-corner-all" style="padding: 0.7em;"><p><span class="ui-icon ui-icon-info" style="float: left; margin-right: 0.3em;"/><strong>Info</strong> There are no items in your shopping cart.</strong></p></div>');
							$('#msgbox').dialog('open');
						}

				} // end success
			});


			return false;

		}
	
	);

	$('#admin_check_out').click(
	
		function(e){
		
			e.preventDefault();
			// test to see if we have items in the cart befor we allow checkout

			
			var e_query = false;
			
			if(typeof $(this).attr('buser_id') !='undefined'){
				e_query = '?' + $(this).attr('buser_id');
			}
		
			
			$.ajax({
					method: 'get',url: 'rest.php',data: 'has_items_in_cart',
					dataType: 'json',
					beforeSend: function(){  },
					complete: function(){},
					success: function(data){
						if(data.hasItems =='yes'){
							document.location = 'admin_checkout.php' + (e_query ? e_query : '');
						}else{
							// show empty cart
							$('#ui-dialog-title-msgbox').html('Message');
							$('#msgbox').html('<div class="ui-state-highlight ui-corner-all" style="padding: 0.7em;"><p><span class="ui-icon ui-icon-info" style="float: left; margin-right: 0.3em;"/><strong>Info</strong> There are no items in your shopping cart.</strong></p></div>');
							$('#msgbox').dialog('open');
						}

				} // end success
			});
			
			return false;
		}
	);
});


