jQuery(document).ready(function() {
    $ = jQuery;

    $("div.productpreview a").hover(
        function() {
            var rel = $('#content').css('background');
            $('#content').css('background-image', 'url(' + $(this).attr('href') + ')').attr('rel', rel);
        },
        function() {
            $('#content').css('background', $('#content').attr('rel'));
        }
    ).click(function(e) {
        e.preventDefault();
        return false;
    });
   //$("a[rel='box']").colorbox();
});

