jQuery.noConflict();
jQuery(document).ready(function() {
    jQuery('div.product-img-box div.more-views ul li a').fancybox();    
    
    var xOffset = 0;
    var yOffset = 40;
    jQuery('.price-include-tax a').hover(function(e) {
        var position = jQuery(this).position();
        var width = jQuery(this).width();

        height = jQuery('.delivery-info-box').height();
        height = 286;
        width = jQuery('.delivery-info-box').width()/2;
        width = 200;
        jQuery('.delivery-info-box')
            .css("left",(e.pageX - width - xOffset) + "px")
            .css("top",(e.pageY - height - yOffset ) + "px")
            .fadeIn("fast");
    },
    function() {
        jQuery('.delivery-info-box').fadeOut("fast");
    });     
});

