	
$(function()
{

	$(document).ready(function() {
		$('.photoRight a,.gallery a').fancybox();
	});
	
	$('.menu a').hover(function() {
		$(this).find('img').animate({ left: '3px', top: '3px' }, 200, 'swing');							
	}, function() {
		$(this).find('img').animate({ left: '0px', top: '0px' }, 200, 'swing');		
	});

});

