$(document).ready(function()
{
	$(".Quicklook").each(function()
	{
		var imageUL = $(this).children("a").children(".Quicklook-img");
		$(this).find(".qlbutton").css('height', $(imageUL).height()+'px').css('width', $(imageUL).width()+'px');
	
		$(this).hover(function () 
		{
			$('.qlbutton').hide();
			if($("[id*=hidDetails]").val()!="")
				$(this).find(".qlbutton").show();
		}, function() {});
	
	});
	    

    $('.qlbutton').bind('mouseleave', function() {$(this).fadeOut('fast');});
	$(".qlbutton").click(function(e) {getQuicklook(this);});	
});

function getQuicklook(start)
{
	$(".qlArea").html("");
	$.post("/ajax/QuickLook.ashx", 
		{ProductId:$(start).siblings(".qlProductId").val(), DisplayName:$(start).siblings(".qlDisplayName").val(), 
		Description:$(start).siblings(".qlDescription").val(), Details:$("[id*=hidDetails]").val()}, 
		gotQuickLook, "html");
	return false;
}

function gotQuickLook(response, textStatus)
{
	$(".qlArea").html(response).show("normal");
	initialiseProductPage(false);
	initialiseStockProcess();
}
