$(function(){

	$('#cart').dialog({
			bgiframe: true,
			autoOpen: false,
			height: 400,
			width:800,
			modal: true,
	        open: function(ev,ui){

	        },
	        close:function(ev,ui){

	        }

	});


	$('#view-cart').click(

		function(e){
			e.preventDefault();
			$('#cart').html('');
			$('#cart').dialog('open').load('cart.php?false');
			return false;

		}

	);


	$('#admin_check_out').click(

		function(e){

			/* need to check if we have items in the cart */
			e.preventDefault();

			$.ajax({
					method: 'get',url: 'rest.php',data: 'has_items_in_cart',
					dataType: 'json',
					beforeSend: function(){ $('#cart-message').hide('slow'); },
					complete: function(){},
					success: function(data){
						if(data.hasItems =='yes'){
							document.location = 'user-terms.php';
						}else{
							// show empty cart
							$('#cart').html('');
							$('#cart').dialog('open').load('cart.php?false');
						}

				} // end success
			});
			return false;

		}

	);




});
