$(document).ready(function(){
	
	$('#slide').cycle({
		fx:'fade', 
		speed:'400', 
		timeout: 0,
		before: function(){
			//$('.text').html(this.alt);
			//alert( $(this).find('img').attr("alt") );
			$('.text').html( $(this).find('img').attr("alt") );
			//$(this).find('p').fadeOut('fast');
		}, 
		after: function(){
			//$(this).find('p').fadeIn('slow');
		},
		next: '.next',
		prev: '.prev'
	});
	
});

window.onload = function(){
	$('.photographer').fadeIn('slow');
	
	if( $("body#home").size() ){
		var navigationImages = ['/images/fashion.gif','/images/beauty.gif', '/images/editorial.gif', '/images/character.gif', '/images/resume.gif', '/images/biography.gif', '/images/contact.gif'];
		$.each(navigationImages, function(e) {
			$(new Image()).load(function() {
				//alert($(this).attr('src') + 'has loaded!');
			}).attr('src',this);
		});
		
		setTimeout(function(){
			$('#splash').fadeIn("slow");
			
			setTimeout(function(){
				$('#navigation').fadeIn("slow");
				
			}, 800);
		}, 600);
	}
}