$(document).ready(function(){
	$('table.productListing td:not(.productListing-heading), table.productListing td a').hover(
			function(event){
				$(event.target).parent('tr').children('td').addClass('productListing-data-on');
			},
			function(event){
				$(event.target).parent('tr').children('td').removeClass('productListing-data-on');
			}
		);
	$('table.productListing td:not(.productListing-heading)').click(function(event){
		window.location = $(event.target).children('a:first').attr('href');
	});
});

