/* Resize all product img divs to equal height */
$(document).ready(function() {
    $("div.product-img,div.product-img-last").equalHeights();
	$("div.product").equalHeights();
});

/* Resize all boxes to equal height */
$(document).ready(function() {
    $("div#boxes div").equalHeights();
});

/* Make the features div clickable */
$(document).ready(function(){

	$("#features .product").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});
