$(function(){
	$('#content').hide().delay(700).fadeIn('slow');

	var $iPad = $('#promo-image');
		$iPad
			.css({'top':'-900px'})
			.delay(1000)
			.animate({'top':'+=900px'},1000,'easeInOutExpo')
		;
	
	var $promoText = $('#promo-text');
		$promoText
			.hide()
			.delay(2000)
			.fadeIn('slow')
		;
	var $button = $('.work-link a');
		$button
			.button()
			.hide()
			.delay(2300)
			.fadeIn('slow')
		;
				
	
	$('#our-work .work-item img').each(function(){
	var that = $(this);
		that.bind('mouseenter', function(){
		that.css({
			'-moz-box-shadow':'0 0 5px #808080',
			'-webkit-box-shadow':'0 0 5px #808080',
			'box-shadow':'0 0 5px #808080'
			}).fadeIn('slow');
		})
		.bind('mouseleave', function(){
		that.css({
			'-moz-box-shadow':'none',
			'-webkit-box-shadow':'none',
			'box-shadow':'none'
			});
		})
	});	
});


