/*
 * 	Easy Tooltip 1.0 - jQuery plugin
 *	written by Alen Grakalic	
 *	http://cssglobe.com/post/4380/easy-tooltip--jquery-plugin
 *
 *	Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */
$(function() {
			$('.item').hover(function(){
				$(this).find('img').stop().animate({opacity:'0'},{queue:false,duration:100});
			}, function(){
				$(this).find('img').stop().animate({opacity:'1'},{queue:false,duration:900});
			});
		});