$(document).ready(function(){
		var hide = new Array();
		$('#content-body div.cell img.tmb').mouseover(function(){
			var top = $(this).parents().filter('div.image').offset().top;
			var left = $(this).parents().filter('div.image').offset().left;
			var id = 'big_image_'+$(this).attr('rel');
			$('img.big').each(function(){
				hide[$(this).attr('id')] = false;
				if($(this).attr('id') != id){
					$(this).css('left','-10000');
					//$(this).fadeOut('fast');
					$(this).css('display','none');
				}
			});
			
			if(jQuery.browser.opera){
				var appVer = parseFloat(navigator.appVersion);
				if(appVer <= 9.1){
					top += 88;
				}
			}
			
			$('#big_image_'+$(this).attr('rel')).css('top', top);
			$('#big_image_'+$(this).attr('rel')).css('left', left);
			$('#big_image_'+$(this).attr('rel')).fadeIn(250, function () {
			if(hide[id]){
				$('#' + id).css('display','none');
				hide[id] = false;
			}
      });
			//$('#big_image_'+$(this).attr('rel')).css('display','block');
			$('#big_image_'+$(this).attr('rel')).mouseout(function(){
				$(this).css('display','none');
				hide[id] = true;
				//$(this).fadeOut('slow');
			});
		});
	});