// linkbox.js
// ----------
// Makes an element containing a link behave as
// though it is itself a link
//
// @author:     ian oxley
// @version:    $Date: 2007-11-08$
// @requires:   jquery.js

$(document).ready(function() {
    $('.homebox a, .news li h3 a, ').parent().parent().click(followLink);
    $('.products>li>div>h3>a').parent().parent().parent().click(followLink);
    
    function followLink() {
        window.location.href = $(this).find('a').attr('href');        
        return false;
    }
});
