function furniture_view_cat(cat_id,id){ window.location = "furniture_cat.php?cat_id=" + cat_id + "&id="+ id; } function lighting_view_cat(cat_id,id){ window.location = "lighting_cat.php?cat_id=" + cat_id + "&id="+ id; } function accessory_view_cat(cat_id,id){ window.location = "accessory_cat.php?cat_id=" + cat_id + "&id="+ id; } function seasonal_view_cat(id){ window.location = "seasonal.php?id=" + id; } function build_menu(active_cat,subcat){ var gallery_selected = "
  • gallery
  • "; var gallery = "
  • gallery
  • "; var about_selected = "
  • about
  • "; var about = "
  • about
  • "; var furniture_selected = "
  • furniture
  • "; var furniture = "
  • furniture
  • "; var lighting_selected = "
  • lighting
  • "; var lighting = "
  • lighting
  • "; var accessory_selected = "
  • accessories
  • "; var accessory = "
  • accessories
  • "; var seasonal_selected = "
  • seasonals
  • "; var seasonal = "
  • seasonals
  • "; var press_selected = "
  • press
  • "; var press = "
  • press
  • "; var news_selected = "
  • news
  • "; var news = "
  • news
  • "; var contact_selected = "
  • contact
  • "; var contact = "
  • contact
  • "; var book_selected = "
  • books
  • "; var book = "
  • books
  • "; var pricelist_selected = "
  • prices
  • "; var pricelist = "
  • prices
  • "; var services_selected = "
  • services
  • "; var services = "
  • services
  • "; var str_menu = ""; var content = document.getElementById("leftmenu_content"); content.innerHTML = str_menu; } function goto_page(url,section,subcat){ build_menu(section,subcat); var content = document.getElementById("content"); content.src = url; }