jQuery(document).ready(function(){

	// Equalize product height
	var col1 = jQuery('.col1').height();
	var col2 = jQuery('.col2').height();
	
	if (col1 > col2) {
		jQuery('.col1, .col2').css('height',col1);
	} else {
		jQuery('.col1, .col2').css('height',col2);
	}
	
});



