﻿$(document).ready(function(){
	$(".helper").simpletooltip();
});

(function($){ $.fn.simpletooltip = function(){
	return this.each(function() {
		var text = $(this).attr("title");

				$(this).hover(function(e){
					
					$(this).attr("title", "");
					$("#helper").text(text).fadeIn(500);;
					if($.browser.msie) var tipWidth = $("#helper").outerWidth(true)
					$("#helper").width(tipWidth);
				}, function(){
					$("#helper").text("Наведи курсор на любую ссылку и я скажу для чего она нужна").fadeIn(500);;
					if($.browser.msie) var tipWidth = $("#helper").outerWidth(true)
					$("#helper").width(tipWidth);
				});

				
	});
}})(jQuery);
