$(document).ready(function(){

$('#products .photo a img').tooltip({
    track: true,
    delay: 0,
    showURL: false,
    extraClass: "pretty",
    fixPNG: true,
    opacity: 0.99,
    left: -120,
    showBody: " - ",
        bodyHandler: function() {
        var prod_id = $(this).closest('li').attr("id");
        return $("#prod_photos div."+prod_id).html();
    }
});

    $('.imagesList a').lightBox();
});
