$(document).ready(function(){
	var currentZIndex_ = 1;
	var currentThumbID_;
	$('.thumb').each(function(){
		$(this).mouseover(function(){
			selectThumb('#big_thumb_holder #' + $(this).attr('id') + '_img');
		});
		$(this).mouseout(function(){
			
		});
		$(this).click(function(){
			return false;
		});
		$('#big_thumb_holder').append('<img src="' + $(this).children('a').attr('href') +'" id="' + $(this).attr('id') + '_img" style="display: none;"/>');
	});
	
	function selectThumb(thumbID)
	{
		if(currentThumbID_ === thumbID) return;
		currentZIndex_++;
		$(thumbID).css('z-index', currentZIndex_);
		$(thumbID).stop(true, true);
		//$(thumbID).css('opacity', '0');
		$(thumbID).hide();
		$(thumbID).fadeIn();
		currentThumbID_ = thumbID;
	}
	selectThumb('#big_thumb_holder #thumb-1_img');
});

