// JavaScript Document

						$(document).ready(function() {
							/*$("#featuresTableFeature img[title]").tooltip();*/
							$("#toolTipsDiv img[title]").tooltip({

   // tweak the position
   offset: [-5, 0],

   // use the "slide" effect
   effect: 'toggle',
    
	//Speed of rollover
	delay: 1,
	
	postion: 'bottom center'

// add dynamic plugin with optional configuration for bottom edge
}).dynamic({ bottom: { direction: 'down', bounce: true } });
							
						
						});
					
