// JavaScript Document
$(document).ready(function() {
	$('.prj').delay(1000).each(function(index){
										
		$(this).animate(
			{top:+50},
			0,
			function(){}
		);
		$(this).delay(300*index).animate(
			
			{opacity: 1.0,
			top:0}, 			
			{
			duration:300,
			specialEasing: {
			  opacity: 'linear',
			  top: 'easeOutBack'
			}
			}
   		);
	});

});
