$(document).ready(function() {
	$('a.zoom').fancybox({
		'zoomSpeedIn': 500, 
		'zoomSpeedOut':	500, 
		'overlayShow': false,
		'zoomOpacity': true,
		'easingIn': 'easeInOutQuart',
		'easingOut': 'easeInOutQuart',
		'padding': 10
	});
	
	$('#descriptionButton').click(function() {
		$('#description').fadeIn('normal');
		return false;
	});
	
	$('#closeButton').click(function() {
		$('#description').fadeOut('fast');
	});
	
	$('div.photo').prepend('<img src="img/photo-corners.png" width="260" alt="" class="photo-corners" />');
	
	$('.zoom').hover(
		function() {
			$(this).find('.icon-zoom').animate({opacity: "1"},220);
		},
		function() {
			$(this).find('.icon-zoom').animate({opacity: "0"},350);
		}
	);
});