/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var $ = jQuery.noConflict();
$(document).ready(function(){
    
    $('.galleries').find('img').each(function(index,item){
           $(this).tooltip({
            delay: 0,
            showURL: false,
            track: true,
            fade: 250,
            bodyHandler: function() {
                return '<p><img src="'+$(this).attr('src')+'"></p>';
            }
        });
    });
});

