$(document).ready(
	function() 
	{
		$('.tooltip img').Tooltip({
			delay: 0,
  			track: true,
  			showURL: false
		});
		
		$('.tooltip img').hover(
		function()
		{
		   $('.tooltip img').not(this).animate({opacity: .2}, "fast");
		},
		function()
		{
			 $('.tooltip img').not(this).animate({opacity: 1}, "fast");
		});
	}
);