function toggleQuickview(id) {
	jQuery(".product_quick_view").hide();
	if(id != "") {
		if(jQuery(".product_"+id+" div.middle").html() == "") {
			jQuery(".product_"+id+" div.middle").css({"min-height": "216px"});
			jQuery(".product_"+id+" div.middle").html('<div style="padding:0px;height:199px;"><img src="/skin/frontend/clickmix/default/images/opc-ajax-loader.gif" />&nbsp;Loading...</div>');
			jQuery(".product_"+id+" div.middle").load('/popups/product/quickview/id/'+id);
			jQuery(".product_"+id).show()
		} else {
			jQuery(".product_"+id).show();
		}
	}
}

jQuery(document).mouseup(function (e) {
    var container = jQuery(".product_quick_view");
    if (container.has(e.target).length === 0) {
	container.hide();
    }
});

