$(document).ready(function() {
	// initiate tool tip
	// basic usage  
	$('.normaltip').aToolTip();  
		
	// fixed tooltip  
	$('.fixedtip').aToolTip({  
			fixed: true  
	});
	$('.clicktip').aToolTip({  
		clickIt: true,  
		tipContent: 'Hello I am aToolTip with content from param'  
	}); 				   
});
