$(function() {
	$("div.product a.show-detail, div.product img.thumbnail").click(function() {
    var $div = $(this).parents("div.product");
    if ($div.is('.nopopup')) {
      window.location.href = $div.find('a.show-detail').attr('href');
    }
    else {
  		$(this).parents("div.product").clone().modal({
  			containerId: 'productmodal-container',
  			position: [20, 216],
  			// position: [1, 1],
  			opacity: 75,
  			closeHTML: '<a title="Close">close</a>'
  		});
    }
	});
	$("div.product a.add-cart").live("click", function() {
		$(this).siblings("form").submit();
	});
	$(document).keyup(function(event){
	    if (event.keyCode == 27) { // escape key
	        $("#productmodal-container a.simplemodal-close").trigger("click");
	    }
	});
});
