$(document).ready(function()
{
	Cufon.replace('h1', { fontFamily: 'Moolbor' });
	Cufon.replace('#menu', { fontFamily: 'Vegur' });
	Cufon.replace('.cover', { fontFamily: 'Moolbor' });
  
  $('.miniature').hover(function(){
		$(".cover", this).stop().animate({top:'0px', height:'230px'},{queue:false,duration:100});
	}, function() {
		$(".cover", this).stop().animate({top:'230px'},{queue:false,duration:100});
	});
  
  $("#portfolio img").animate({ 
		opacity: 0.4
	}, 500);
	$("#portfolio img").hover(
		function(){
			$(this).animate({
			opacity: 1
			}, 500)
		}, function(){
			$(this).animate({
			opacity: 0.4
			}, 500)
	});

  $("a.album").fancybox(); 
  
});