//This loads main style sheet
//seperated by name attribute as to not interfere with other/print style sheets

 //sets style sheet, remember to add /includes/css/ etc
 $(document).ready(function() {

AssignMenuLayout();
});


function AssignMenuLayout()
{
    var locationURL = window.location.href;
  if(locationURL.match("location") == "location")
  {
    $("a#location").addClass('active');
  }
  
  if(locationURL.match("index") == "index")
  {
    $("a#home").addClass('active');
  }
  
  if(locationURL.match("links") == "links")
  {
    $("a#links").addClass('active');
  }
  
  if(locationURL.match("contact") == "contact")
  {
    $("a#contact").addClass('active');
  }
  
  if(locationURL.match("amenities") == "amenities")
  {
    $("a#amenities").addClass('active');
  }
  
  if(locationURL.match("facilities") == "facilities")
  {
    $("a#facilities").addClass('active');
  }
  
  if(locationURL.match("gallery") == "gallery")
  {
    $("a#gallery").addClass('active');
  }
  

}



