// CMG Home page animated text $(document).ready(function(){ // Do you know where you want to be? $("#slide1") .delay(3000).animate({width:"608px"}, 500) .delay(3000).animate({height:"0px"}, 500) // Do you know how to get there? $("#slide2").css({width:"608px", height: "0px"}) .delay(6500).animate({height:"105px"}, 500) .delay(3000).animate({width:"0px"}, 500) // Where do you want to be $("#slide3") .delay(10500).animate({width:"608px"}, 500) .delay(28150).animate({width:"0px"}, 500) // out - wait for end of slide 14 (+28150 from here) // Owner / Director $("#slide4") .delay(11250).animate({width:"608px"}, 500) .delay(3000).animate({top:"-105px"}, 500) // for your Organisation $("#slide5") .delay(14650).animate({top:"0px"}, 500) //+3400 .delay(3000).animate({top:"-105px"}, 500) // CEO $("#slide6") .delay(18250).animate({top:"0px"}, 500) //+3600 .delay(3000).animate({top:"-105px"}, 500) // Executive Team $("#slide7") .delay(21650).animate({top:"0px"}, 500) //+3400 .delay(3000).animate({top:"-105px"}, 500) // GM $("#slide8") .delay(25250).animate({top:"0px"}, 500) //+3600 .delay(3000).animate({top:"-105px"}, 500) // Reporting Team $("#slide9") .delay(28650).animate({top:"0px"}, 500) //+3400 .delay(3000).animate({top:"-105px"}, 500); // Family Business $("#slide13") .delay(32250).animate({top:"0px"}, 500) //+3600 .delay(3000).animate({top:"-105px"}, 500) // Career $("#slide14") .delay(35650).animate({top:"0px"}, 500) //+3400 .delay(3000).animate({width:"0px"}, 500) // Do you want clarity and focus with implementation $("#slide15") .delay(39900).animate({width:"608px"}, 500) .delay(6000).animate({width:"0px"}, 500) // We can get you there $("#slide16") .delay(46900).animate({left:"0px"}, 500); });