/*
 * Holding page
 * Coded at http://typeslowly.co.uk by Jason McReynolds
 */
$(document).ready(function(){
	$('#photos').cycle({fx: 'fade', speed: 1000, timeout: 4000});
	$('.flnks a').mouseover(function(){ 
		$(this).stop().animate({opacity: 0}, 500 );
    }).mouseout(function(){
		$(this).stop().animate({opacity: 1}, 500 );
    });
});
