
  if ((window.location.protocol != "file:") && (window.location.hostname != "localhost") && (window.location.hostname.indexOf("192.168.1.") == -1)) {
    if (window.location.hostname == "www.cherryaerospace.com") {
//		  window.document.domain = "cherryaerospace.com"; 
	  } else {
	    // window.location.replace(window.location.protocol + "//www.cherryaerospace.com" + window.location.pathname + window.location.search);
	  }
  }

  var doc_root = "";
  var doc_location = window.location.pathname.replace(/\\/g,"/");
  var doc_root_pos = doc_location.indexOf("/html/");
	if (doc_root_pos >= 0) {
		var nesting_level = doc_location.substring(doc_root_pos + 1).split("/").length - 1;
		for (var i = 0; i < nesting_level; ++i) {
			doc_root = doc_root + "../";
		}
	}

  $(document).ready(function() {
	//$(document).domready(function() {

    $("#top_menu").tabMenu();

    var $accordion = $("ul.drawers").accordionMenu();
		
    var openPage = function(page) {window.location.replace(doc_root + page);};
		$("h2:eq(0)", $accordion).click(function(){openPage("index.html");});
		$("h2:eq(1)", $accordion).click(function(){openPage("html/product/product_overview.html");});
		$("h2:eq(2)", $accordion).click(function(){openPage("html/contacts/contacts.html");});
		$("h2:eq(3)", $accordion).click(function(){openPage("html/about/overview.html");});

  });

