$(document).ready(function() {
	$('a.updateLink').hide();
	$('a.updateLink').fadeTo(1, 0.5);

	$('#content h2, #content h1').addClass('cufon');
	Cufon.replace('#content h2, #content h1');
	
	$('#contentHeader').cycle({
		fx:    'fade', 
    	pause:  6
	});
	
	$('.fancybox').fancybox({
		overlayOpacity: 0.9,
		overlayColor: '#271a13'
	});
	
	setTimeout("displayUpdateLink()", 1000);
	
});

function displayUpdateLink() {
	$('a.updateLink').slideDown('slow');
	
    $("a.updateLink").hover(
      function () {
        $(this).fadeTo(300, 1);
      }, 
      function () {
        $(this).fadeTo(500, 0.5);
      }
    );
}
