// JavaScript Document
$(document).ready(function() {



	//Select all anchor tag with rel set to contacts_map_tooltip

	$('a[rel=contacts_map_tooltip]').mouseover(function(e) {

		

		//Grab the title attribute's value and assign it to a variable

		var tip = $(this).attr('title');	

		

		//Remove the title attribute's to avoid the native contacts_map_tooltip from the browser

		$(this).attr('title','');

		

		//Append the contacts_map_tooltip template and its value

		$(this).append('<div id="contacts_map_tooltip"><div class="tipHeader"></div><div class="tipBody">' + tip + '</div><div class="tipFooter"></div></div>');		

				

		//Show the contacts_map_tooltip with faceIn effect

		$('#contacts_map_tooltip').fadeIn('500');

		$('#contacts_map_tooltip').fadeTo('10',0.9);

		

	}).mousemove(function(e) {

	

		//Keep changing the X and Y axis for the contacts_map_tooltip, thus, the contacts_map_tooltip move along with the mouse

		$('#contacts_map_tooltip').css('top', e.pageY + 10 );

		$('#contacts_map_tooltip').css('left', e.pageX + 20 );

		

	}).mouseout(function() {

	

		//Put back the title attribute's value

		$(this).attr('title',$('.tipBody').html());

	

		//Remove the appended contacts_map_tooltip template

		$(this).children('div#contacts_map_tooltip').remove();

		

	});



});



