$(function() {
	
		$(document).ready(function () {	
			
		$('.first').animate({right: '489px'}, 2000);
		$('.first').delay(500).show(500);
		$('.second .a').delay(2500).show(500);
		$('.second .b').delay(4000).show(500);
		$('.second .c').delay(4200).show(500);
		
	});
});
