$(document).ready(function() {
	$("a#Buy_It").fancybox({
		'type'					: "iframe",
		'width'					: 350,
		'height'				: 175,
		'hideOnOverlayClick'	: false,
		'enableEscapeButton'	: true,
		'showCloseButton'		: true,
		'onClosed'				: function() {
			$('#CartItems').fadeOut(400, function() {
				var xmlHttp;
				if (window.XMLHttpRequest) {
					xmlHttp = new XMLHttpRequest();
				} else {
					xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
				}
				xmlHttp.open("GET", "/cart_items.asp", true);
				xmlHttp.onreadystatechange = function() { if (xmlHttp.readyState == 4) { document.getElementById('CartItems').innerHTML = xmlHttp.responseText; } };
				xmlHttp.send();
				$('#CartItems').fadeIn(400);
			});	
		},
	});
});
