$(document).ready(function() {

    $("#list tr").hover(function() {
	$(this).css({'background-color':'lightgray', 'cursor':'pointer'});
    }, function() {
	$(this).css({'background-color':'white', 'cursor':'auto'});
    });

    $("#list tr").click(function() {
	var itemNumber = $(this).children('td:first').next().html();
	var url = 'http://www.thebestlittlecardshop.com/';
	url += 'index.php?action=item&id=' + itemNumber;
	window.location = url;
    });

});

