﻿/*****************

  (c) 2006 Q42 B.V.

  The contents of this file, partially or in whole, may not be reproduced
  without prior written permission by Q42 B.V.

*****************/

/*
function Product(){}

Product.prototype = 
{
  init : function()
  {
    var moreLink = getElementsByClassName(document, "p", "product-more-info");
    for(var i=0; i<moreLink.length; i++)
      DOMEvents.attach(moreLink[i], "click", product.showSubMenu);
  },
  showSubMenu : function()
  {
    this.parentNode.nextSibling.style.display = (this.parentNode.nextSibling.style.display == "block")?"none":"block";
  }
};
var product = new Product();
//product.init();
DOMEvents.attach(window, "load", product.init);
*/
