$(document).ready(function() {

// select all desired input fields and attach tooltips to them

    // initialize tooltip
   $("img.tip").each(function(){
	var el = $(this);

	el.tooltip({
     
        // use single tooltip element for all tips
        tip: el.attr("alt"),
        effect: "fade",
        fadeInSpeed: 250,
        fadeOutSpeed: 250,
        predelay: 500,
        delay: 0
    });
    });

});

$(document).ready(function() {

    // initialize tooltip 
   $("img.icontip").each(function(){
	var el = $(this);

	el.tooltip({
     
        // use single tooltip element for all tips
        tip: el.attr("alt"),
        effect: "fade",
        fadeInSpeed: 250,
        fadeOutSpeed: 250,
        predelay: 500,
        offset: [6, 1],
        delay: 0
    });
    });

});

