$(document).ready(function() {
	// $('.downloads').hide();
	// $('a.product-readmore').click(function() {
	// 	$(this).parent().parent().find('.downloads').slideToggle('fast');
	// 	return false;
	// });
        $("#product__submit_button").click(function(){
              //alert("product added");
              //window.location.href = 'http://johndelaneypub.com/products-page/checkout/';
              $("#dialog").html("<p style='font-size:16px;'>The product has been added to your shopping cart</p><p><a href='http://johndelaneypub.com/products-page/checkout/'>Click here</a> to go to your cart or close this window to keep shopping</p>");
              $("#dialog").dialog('open')
        });
        $( "#dialog" ).dialog({
                  height: 140,
  		  modal: true
              });
              $("#dialog").dialog('close')
});

$(window).load(function() {
	height = 1;
	
	$('.product-text').each(function() {
		if($(this).height()>height){ height = $(this).height(); }
	});
	
	$('.product-text').height(height);
	
	$('.product-helper').each(function() {
		if($(this).height()>height){ height = $(this).height(); }
	});
	
	$('.product-helper').each(function() {
		$(this).css('min-height',height);
	});
});


