// JavaScript Document

$(document).ready(function()
{
	$('div.thumb').each(function(_i)
	{
		var _id = parseInt(_i) + 1;
		
		$(this).hoverIntent(function()
		{
			var _top = $(this).offset().top - 200;
			var _left = $(this).offset().left + 10;
			$('#thumbpopup_'+_id).css({'top':_top+'px','left':_left+'px'}).fadeIn('fast');
		},
		function()
		{
			$('#thumbpopup_'+_id).fadeOut('fast');
		});
	});
});
