$(document).ready(function() {

	//Select all anchor tag with rel set to tooltip
	$('a.tipped').mouseover(function(e) {
		
		//Grab the title attribute's value and assign it to a variable
		var tip = $(this).attr('rel');	
		var tiptitle = '<h4>' + $(this).attr('name') + '</h4>';

		//Append the tooltip template and its value
		$('#wrapper').append('<div id="tooltip"><div class="tipBody"></div></div>');	
		$('.tipBody').html(tiptitle + tip);	

		//Remove the title attribute's to avoid the native tooltip from the browser
		$(this).attr('title','');
	
		//Set the X and Y axis of the tooltip
		$('#tooltip').css('top', e.pageY + 15 );
		$('#tooltip').css('left', e.pageX + 25 );
		
		//Show the tooltip with fadeIn effect
		$('#tooltip').css('opacity', '0');
		$('#tooltip').fadeTo('1000',1);
		
	}).mousemove(function(e) {
	
		//Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse
		$('#tooltip').css('top', e.pageY + 15 );
		$('#tooltip').css('left', e.pageX + 25 );
		
	}).mouseout(function() {
	
		//Remove the appended tooltip template
		$('div#tooltip').remove();
		
	});
	
});
