Management = function(){
   
   this.get = function(){
      var management = "<center><span class='dataHeading'>Management Training</span></center><br><br>";
      management += '<span class="data">'
      management += '<i>"You cannot teach a man anything; you can only help him find it within himself."</i> - Galielo Galilei<br>';
      management += '<br><b>ACS currently offers the following training topics.  ';
      management += 'Additional courses can be developed upon request to suit specific ';
      management += 'training needs.</b>';
      management += '<UL><LI>Guiding Principles of Human Interactions</LI>';
      management += '<LI>Staff Motivation</LI>';
      management += '<LI>Communication</LI>';
      management += '<LI>Stress Management</LI>';
      management += '<LI>Time Management</LI>';
      management += '<LI>Workplace Diversity</LI>';
      management += '<LI>Workplace Professionalism</LI>';
      management += '<LI>Excellence in Customer Service</LI>';
      management += '<LI>Lessons for Leadership</LI>';
      management += '<LI>Technology in the workplace (MS Word and MS Power Point)</LI></UL>';
      management += '<Br><b>Individual Training/Consulting Sessions</b>';
      management += '<UL><LI>Grant Consultation</LI>';
      management += '<LI>Expanding the resume</LI>';
      management += '<LI>Preparing for the interview</LI></UL>';
      management += '</span>';
      
      $('#target').html(management);
   }
   
}

var management = new Management();
