/* Hardware House Tweaks
--------------------------------------------------------------------------------*/
$(document).ready(function() {
    // Product menu
    $('#catList tr').each(function() {
        this.catLink = $(this).find('a:first');
        var pad = (64 - this.catLink.height() ) / 2;
        this.catLink.css({
            'padding-bottom': pad,
            'padding-top': pad
        });
    }).click(function() {
        location.href = this.catLink.attr('href');
    }).hover(
        function() {
            this.catLink.addClass('hover');
            $('img', this).fadeTo(0, 0.9);
        },
        function() {
            this.catLink.removeClass('hover');
            $('img', this).fadeTo(0, 1);
        }
    ).css('cursor', 'pointer');
});
