jQuery(function($) {
function flyin(event)
{
     $("#p2").css("top","-700px");
     $("#p3").css("top","700px");
     $("#p1").css("top","700px");
     //$("#p4").css("left","-1700px");
   $("#logo").fadeIn(2400, flyin1);
}
function flyin1(event)
{
     $("#p1").animate({ "top": 0 },700, "easeOutElastic", flyin2);
}
function flyin2(event)
{
    $("#p2").animate({"top":0},700, "easeOutElastic", flyin3);
}

function flyin3(event)
{
    $("#p3").animate({"top":0},700, "easeOutElastic", fade1);
}

	

function fade1(event)
{
//$("#text").fadeIn('slow', function() {
 //   $("#text").jTypeWriter();
//});
$("#myImage").fadeIn(2400, function(){
$("#text").slideDown(1400, function() {
   $("#enterImage").fadeIn("slow");
});
									  });
}

flyin();



});
