$(document).ready(function() {
	$('#thumbs_list_frame a').click(function() {
		var img = document.createElement('img');
		img.src = ($(this).attr('href'));
		img.style.display = 'none';
		$('#image-block img').fadeOut('fast',function() {
			$('#image-block img').remove();
			$('#image-block').html(img);
			$(img).fadeIn();
		});
		return false;
	});
	
});
