/**
 * For displaying customized tooltips.
 */
$(document).ready(function(){
	
	$('.tooltip').live("hover", function () {
		
		var id = '#tooltip_box' + $(this).attr('id');
		var offset = $(this).offset();
		
		$(id).css(offset);
	});
	
	$('.tooltip').live("mouseenter", function () {
		
		var id = '#tooltip_box' + $(this).attr('id');

		$(id + ' .tooltip_box_content').html($(this).attr('alt'));
		$(id).fadeIn(100);
	});
	
	$('.tooltip').live("mouseleave", function () {

		var id = '#tooltip_box' + $(this).attr('id');

		$(id).fadeOut(100);
	});

});
