// JavaScript Document

$(document).ready(function(){
$(".btn").hover(function() {
$(this).next("img.tooltip").stop(true, true).animate({opacity: "show", top: "-32"}, "fast");
}, function() {
$(this).next("img.tooltip").animate({opacity: "hide", top: "-30"}, "fast");
});
 
});




