Data = function(){
   
   this.get = function(){
      var homeData = "<center><span class='dataHeading'>Home</span></center><br><br>";
      homeData += "<p class='data'>ACS is a consulting company dedicated to providing quality ";
      homeData += "and timely workshops <img src='./img/child1.jpg' align='right'/>";
      homeData += "for the business and education communities or ";
      homeData += "through individual consultations. ACS can tailor any workshop or ";
      homeData += "training to your special interests and circumstances. All workshops ";
      homeData += "and individual sessions are supported by current research and are ";
      homeData += "designed to motivate, encourage the use of best practices, and "
      homeData += "promote pride and professionalism.</p>";
      
      $('#target').html(homeData);
   }

}

var data = new Data();
