$(function(){
	$('ul#collectionsList li img.painting').mouseover( function() {
		var position = $(this).position();

		$('#zoomedimage').attr('src', $(this).attr('src')).attr('title', $(this).attr('title'));
		$('#hoverviewer').css({ top: (position.top - 35) + 'px',
								left: (position.left - 35) + 'px'
							  });
		$('#hoverviewer').show();
	});
	
	$('#zoomedimage').mouseout( function() {
		$('#hoverviewer').hide() 
	});
});