﻿/* Loads the News page inside the content div using the jquery ajax api  */
$(document).ready(function () {
  $("#driver").click(function(event){
      $('#contentregion').load('/pages/news.html');
  });
});
   
/* Loads the cosmedic page inside the content div using the jquery ajax api  */
$(document).ready(function () {
  $("#driver").click(function(event){
      $('#contentregion').load('/pages/skintightening.html');
  });
});

/* Loads the medical page inside the content div using the jquery ajax api  */
$(document).ready(function () {
  $("#driver").click(function(event){
      $('#contentregion').load('/pages/medical.html');
  });
});

/* Loads the default contact page inside the content div using the jquery ajax api  */
$(document).ready(function () {
  $("#showcontact").click(function(event){
      $('#contentregion').load('pages/contact.html');
  });
});

function loadcosmeticmain()
{
   $('#contentregion').load('pages/cosmeticmain.html');  
}





