$(function() {
	$(".hoverswap").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.png/, "-over.png"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/-over.png/, ".png"));
		}
	);
});

$(document).ready(function() {

	
	$("a.photoEnlarge").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});
});
