(function() {
    $(document).ready(function() {
        var prodRows = $('#center .prod-group tr');
        $('#layout>div.footer-null').height($('#footer').outerHeight());
        prodRows.click(function() {
            var link = this.getElementsByTagName('a')[0];
            if (link) {
                window.location = link.href;
            }
        });

        if ((jQuery.browser.msie) && (jQuery.browser.version < 7)) {
            $('#header ul.menu>li').hover(function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); });
        }
    });
})();