/* * JavaScript Document* gregmerriman.co.uk* jquery.onload.tooltips.js* * includes/js/jquery.onload.tooltips.js* * Author    :   Greg Merriman* Copyright :   Copyright 2009 (c) Greg Merriman Web Development* Created   :   Mon 09 Nov 2009* Modified  :   Mon 09 Nov 2009* */ // When the DOM is ready...$(function(){		//do tooltips...  $("a#controls1").tooltip({    tip: '#tooltip_controls1',    effect: 'fade',    fadeOutSpeed: 200,    predelay: 200,     offset: [0, 15],    position: 'top center'  });  $("a#controls2").tooltip({    tip: '#tooltip_controls2',    effect: 'fade',    fadeOutSpeed: 200,    predelay: 200,    offset: [0, 15],    position: 'top center'  });  $("a#controls3").tooltip({    tip: '#tooltip_controls3',    effect: 'fade',    fadeOutSpeed: 200,    predelay: 200,    offset: [0, 15],    position: 'top center'  });  $("a#controls4").tooltip({    tip: '#tooltip_controls4',    effect: 'fade',    fadeOutSpeed: 200,    predelay: 200,    offset: [0, 15],    position: 'top center'  });	});