		$(document).ready(function() {
			setTimeout("animation()",300);
		});
		
		function animation(){
			$("#greetings").animate({top: '170px' }, {queue:false, duration:1000, easing:'easeOutBounce'});
			$("#social-icon").animate({left: '600px' }, {queue:false, duration:2000, easing:'easeOutBounce'});	
		}
			
		function sun_raft(){
			$("#logo").animate({top:"-=1px"},2000).animate({top:"+=1px"}, 2000);
			$("#logo-shadow").animate({opacity:".1"},2000).animate({opacity:"1"},2000);
			setTimeout("sun_raft()",2000);
		}
	

