$(function(){
	$("#new-tabber").tabs();
	$(".tab-table table").css('cursor','pointer');
	$(".tab-table table").css('background','#FFFFFF url("http://www.sportsshoes.com/media/image/common/tabber/background.jpg") repeat-x scroll left top');
	$(".tab-table table").hover(
		function(){
			//$(this).css('background','#EBECEC');
			$(this).css('background','#FFFFFF url("http://www.sportsshoes.com/media/image/common/tabber/product-hover.jpg") repeat-x scroll left bottom');
		},
		function(){
			//$(this).css('background','#FFFFFF');
			$(this).css('background','#FFFFFF url("http://www.sportsshoes.com/media/image/common/tabber/background.jpg") repeat-x scroll left top');
		}
	);
	$(".tab-table table").click(function(){
		window.location = $(this).find('a').attr('href');
	});
});