﻿jQuery(document).ready(function() {
	jQuery(window).load(function() {
		jQuery("div.prod_item").each(function() {
			if(jQuery(this).height() <= jQuery(this).parent().height() ){
				jQuery(this).height( jQuery(this).parent().height() - 2 );
			}
		});
	});
});
