// JavaScript Document

    function menu_display() {
      menu = document.createElement('div');
      // about
      about_div = document.createElement('div');
      about_div.id="mabout";
      about_leaf = document.createElement('img');
      about_leaf.src="images/newMenu/leaf.gif";
      about_leaf.id="mabout_leaf";
      about_leaf.style.visibility="hidden";
      about_label = document.createElement('img');
      about_label.src="images/newMenu/about.gif";
      about_label.style.cursor="pointer";
      about_label.onmouseover=function() {
        var leaf = document.getElementById('mabout_leaf');
        leaf.style.visibility="visible";
      }
      about_label.onmouseout=function() {
        var leaf = document.getElementById('mabout_leaf');
        leaf.style.visibility="hidden";
      }
      about_label.onclick= function() {window.location='http://www.cookiecreatives.com/about.php';};
      about_div.appendChild(about_leaf);
      about_div.appendChild(about_label);
      menu.appendChild(about_div)

      // faq
      faq_div = document.createElement('div');
      faq_div.id="mfaq";
      faq_leaf = document.createElement('img');
      faq_leaf.src="images/newMenu/leaf.gif";
      faq_leaf.id="mfaq_leaf";
      faq_leaf.style.visibility="hidden";
      faq_label = document.createElement('img');
      faq_label.src="images/newMenu/faq.gif";
      faq_label.style.cursor="pointer";
      faq_label.onmouseover=function() {
        var leaf = document.getElementById('mfaq_leaf');
        leaf.style.visibility="visible";
      }
      faq_label.onmouseout=function() {
        var leaf = document.getElementById('mfaq_leaf');
        leaf.style.visibility="hidden";
      }
      faq_label.onclick= function() {window.location='http://www.cookiecreatives.com/faq.php';};
      faq_div.appendChild(faq_leaf);
      faq_div.appendChild(faq_label);
      menu.appendChild(faq_div)
      
      // gallery
      gallery_div = document.createElement('div');
      gallery_div.id="mgallery";
      gallery_leaf = document.createElement('img');
      gallery_leaf.id="mgallery_leaf";
      gallery_leaf.src="images/newMenu/leaf.gif";
      gallery_leaf.style.visibility="hidden";
      gallery_label = document.createElement('img');
      gallery_label.src="images/newMenu/gallery.gif";
      gallery_label.style.cursor="pointer";
      gallery_label.onmouseover=function() {
        var leaf = document.getElementById('mgallery_leaf');
        leaf.style.visibility="visible";
      }
      gallery_label.onmouseout=function() {
        var leaf = document.getElementById('mgallery_leaf');
        leaf.style.visibility="hidden";
      }
      gallery_label.onclick= function() {window.location='http://www.cookiecreatives.com/gallery.php';};
      gallery_div.appendChild(gallery_leaf);
      gallery_div.appendChild(gallery_label);
      menu.appendChild(gallery_div)

      // contact
      contact_div = document.createElement('div');
      contact_div.id="mcontact";
      contact_leaf = document.createElement('img');
      contact_leaf.src="images/newMenu/leaf.gif";
      contact_leaf.id="mcontact_leaf";
      contact_leaf.style.visibility="hidden";
      contact_label = document.createElement('img');
      contact_label.src="images/newMenu/contact.gif";
      contact_label.style.cursor="pointer";
      contact_label.onmouseover=function() {
        var leaf = document.getElementById('mcontact_leaf');
        leaf.style.visibility="visible";
      }
      contact_label.onmouseout=function() {
        var leaf = document.getElementById('mcontact_leaf');
        leaf.style.visibility="hidden";
      }
      contact_label.onclick= function() {window.location='http://www.cookiecreatives.com/contact.php';};
      contact_div.appendChild(contact_leaf);
      contact_div.appendChild(contact_label);
      menu.appendChild(contact_div)

      menu.id="menu";
      window.document.body.appendChild(menu);
    }