<!-- aToolTip js -->
    
			$(function(){ 
				$('a.normalTip').aToolTip();
				
				
				$('a.fixedTip').aToolTip({
		    		fixed: true
				});
				
				$('a.clickTip').aToolTip({
		    		clickIt: true,
		    		tipContent: 'Hello I am aToolTip with content from the "tipContent" param'
				});				
				
				
			}); 
		
