jQuery(document).ready(function()
{
	jQuery("a.product-image").click(function()
	{
		wdw_open(jQuery(this).attr("href"));		
		return false;
	});
});

function wdw_open (url)
{
	var height = jQuery(document).height();
	var margin_top = parseFloat(jQuery(document).scrollTop()) + 130;
	
	if (jQuery.browser.msie && jQuery.browser.version.substr(0, 1) < 7) //ie6 hack
	{
		jQuery("body").append("<iframe id='wdw_IE6FIX' src='javascript:false;' scrolling='no' frameborder='0' style='width: 100%; height: " + height + "px; position:absolute; top:0; left:0; z-index:997;  filter: alpha(opacity=0);'>")
	}	
	jQuery("body").append("<div id='wdw_alpha' style='width: 100%; height: " + height + "px; position:absolute; top:0; left:0; z-index:998; opacity: 0.5; filter: alpha(opacity=50); background: #edece8;'>")	
	jQuery("body").append("<div id='wdw_up' style='width: 100%; height: " + height + "px; position:absolute; top:0; left:0; z-index:999;'><div style='margin-top: "+margin_top+"px;' id='wdw_data'></div></div>")	
	
	jQuery("#wdw_data").load(url+" .product-essential", function()
	{
		jQuery("#wdw_data").prepend("<div id='wdw_close'><strong onclick='wdw_close();'>Cerrar</strong></div>");
		jQuery("#wdw_data .product-shop").append("<div class='more_info'><a href='"+url+"'>Más Info</a></div>");
		var btn = jQuery("#wdw_data .button"); 
		btn.removeAttr("onclick");
		btn.click(function()
		{
			jQuery("#product_addtocart_form").submit();
			return false;
		});
	});
}

function wdw_close()
{
	if (jQuery.browser.msie && jQuery.browser.version.substr(0, 1) < 7) //ie6 hack
	{
		jQuery("#wdw_IE6FIX").remove();
	}
	jQuery("#wdw_alpha").remove();
	jQuery("#wdw_up").remove();
}

