Cufon.replace('.menu-button', { fontFamily: 'Monotype Corsiva' });
Cufon.replace('.album_caption', { fontFamily: 'Monotype Corsiva' });

$(document).ready(function(){
	$('.menu-button').mouseover(function(){
		Cufon.refresh('.menu-button');
	});
	$('.menu-button').mouseout(function(){
		Cufon.refresh('.menu-button');
	});
	$('.photo').click(function(){ 
		$('#bigphoto img').attr('src', $(this).attr('bigphoto'));
		$('.photo').each(function(){
			$(this).css('border', 'none');
		});
		$(this).css('border', '3px solid #8b1320');
	});
	$('.photo').mouseover(function(){
		$(this).find('.zoom').css('display', 'block');
		$(this).find('.zoom').animate({
			height: '20px',
			//bottom: '0px'
		}, 300, function(){

		});
	});
	$('.photo').mouseout(function(){
		$(this).find('.zoom').animate({
			height: '0px',
			//bottom: '0px'
		}, 300, function(){
			$(this).find('.zoom').css('display', 'none');
		});
	});
});
