/****************************************************************************/
//	Description: всплывающие окошки с картинками
// 	Author: Mekor
//  Created: 22.12.2008
// 	Version: 1.0.0
//
// 	Last modified author: -
// 	Last modified: -
/****************************************************************************/

$(document).ready(function() {
    $(".smallImg").tooltip({
        delay: 0,
        track: true,
        showURL: false,
        fade: 250,
        bodyHandler: function() {
            return img = $("<img/>").attr("src", this.rel);
        }
        });
});