var fuckIE = function(){
	return;
	if($.browser.msie && $.browser.version < 8){
		$('table .number, table.products th').each(function(){
			$(this).html('<div style="white-space: nowrap;">'+$(this).html()+'</div>');
		});
	}
}

$(document).ready(function(){
	
	fuckIE();
	$('table.products tr.product').bind('mouseenter mouseleave', function(e){
		$(this).toggleClass('hover');
	});
	$('table.products tr.product').bind('click', function(e){
		window.location = $('a', this).attr('href');
	});
	$('a[rel="external"]').attr('target', '_blank').removeAttr('rel');
});
