$(document).ready(function () {
		
		$('div.thumbnail-item').mouseenter(function(e) {

			x = e.pageX - $(this).offset().left;
			y = e.pageY - $(this).offset().top;


			$(this).css('z-index','1')
			.children("div.tooltip")
			.css({'top': y + 5,'left': x + 5,'display':'block'});
			
		}).mousemove(function(e) {
						
			x = e.pageX - $(this).offset().left;
			y = e.pageY - $(this).offset().top;
			
			$(this).children("div.tooltip").css({'top': y + 5,'left': x + 5});
			
		}).mouseleave(function() {
			
			$(this).css('z-index','1')
			.children("div.tooltip")
			.animate({"opacity": "hide"}, "fast");
		});

	});
	
	
