/* written by Alen Grakalic (http://cssglobe.com) */
this.tooltip = function()
{			
	$("a.tooltip").hover(function(e)
	{											  
		this.t = this.title;
		this.title = "";									  
		$(".description").append("<p id='tooltip'>"+ this.t +"</p>");
	},
	function()
	{
		this.title = this.t;
		$("#tooltip").remove();
	});	
};

// starting the script on page load
$(document).ready(function()
{
	tooltip();
});