$(document).ready(function(){
	
	$('.overmerlay').click(function(){
		$(this).fadeOut('fast');
	});	
	
});
//scrollbars need to wait for images to load so they know how big the images are.
window.onload = init;
function init(){
	$('.scroll-pane').jScrollPane({
		scrollbarWidth: 13,
		showArrows: true,
		arrowSize: 14
	});
}