$(document).ready(function() {
	// ie7 inline-block
	if (jQuery.browser.msie && jQuery.browser.version < 8) {
		$('div, span, a, ul, li, p').filter(function(){
			return $(this).css('display') == 'inline-block';
		}).css({display:'inline', zoom:1});
		display = 'inline';
	}
	// product grid same height
	if ($('#page-list').length > 0) {
		$('.product-grid li.odd').each(function(){
			var tH = $(this).find('.cont').height();
			var nH = $(this).next('.even').find('.cont').height();
			if (tH > nH) {
				$(this).next('.even').find('.cont').height(tH);
			}
			if (nH > tH) {
				$(this).find('.cont').height(nH);
			}
		});
	}
});
