/**
 * @author nbeighley
 */
jQuery(document).ready( function(){
	if ($('#showCart').size() > 0) {
		$("#showCart").load('/Shopping/small_cart.php').dialog({
			bgiframe: true,
			autoOpen: true,
			position: 'center',
			title: 'Shopping Cart',
			width: 650,
			modal: true,
			buttons: {
				'Continue': function(){
					$(this).dialog("destroy"),
					$(this).dialog("close");
				},
				'Checkout': function(){
					window.location = "/Cart/";
				}
			},
			close: function(){
				$(this).dialog("destroy"),
				$("#showVideo").dialog("close");
			}
		});
	}
});

