/* 
 * Hammonds Sliding Doors- Tool tips- (on doc ready function)
 * Simple function that appends te toolTip functionality to any thing that has a class of 'tTip'
 * You can set the speed and delay of the transition here:
 */

$(document).ready(function(){
			$('.tTip').betterTooltip({speed: 150, delay: 300});
		});