
	var footerTooltip = {
		
		tooltip: null,
		hovering_child: false,
		
		Initiate: function() {
			
			if (this.tooltip == null) {
				
				this.tooltip = document.createElement('div');
				$(this.tooltip).attr('id', 'footerTooltip');
				$(this.tooltip).hide();
				$(this.tooltip).mouseleave(function() {  footerTooltip.Hide()});
				$('body').append(this.tooltip);
				
			}
		},
		
		
		Show: function( element, text ) {
			
			this.Initiate();
			
			position = $(element).position();
			target_top = position.top - 30;
			target_left = position.left + 10;
			$(this.tooltip).css({"top": target_top,  "left": target_left});
			$(this.tooltip).html( text );
			
			$(this.tooltip).fadeIn();
			
		},
		
		
		Hide: function() {
			
			this.Initiate();
			$(this.tooltip).fadeOut();
			
		}
			
	};