var pages = {

'unique_mareeba':['mareeba-unique.html', 'real-estate.html', 'employment.html', 'agriculture.html', 'health-services.html',
  'schools.html', 'accommodation.html', 'professional.html', 'sports-recreation.html', 'tourism.html', 'food.html', 'chamber.html', 'entertainment.html', 'retail.html', 'manualprofessions.html'],

'chamber_directory':['chamber-directory.html','#directory','#associations'],

 'chamber_profile':['chamber-profile.html','#goalsandobjectives','#contactdetails']

            };
for(var i in pages) {
  if(in_array(page(document.location.href), pages[i]))
    ID(i).style.display = '';
  else
    ID(i).style.display = 'none';
} 
function in_array(needle,haystack) {
  for(var i in haystack)
    if(haystack[i] == needle)
      return true;
  return false;
}        
function ID(id) {
  return document.getElementById(id);
}   
function page(url) {
  apage = url.substring(url.lastIndexOf('/')+1);
  if(apage.indexOf('#') > 0)
    apage = apage.substring(0, apage.indexOf('#'));
  return apage;
}
