window.addEvent('domready', function(){
  var cat_tips = new Tips($$('.cat_tips'));
  var myGallery = new gallery($('gallery'), {
    timed: true,
    delay: 5000,
    showArrows: true,
    showCarousel: false,
    showInfopane: false,
    embedLinks: false
  });
});

function selectProduct(form, product) {
  var target = $(product).getValue();
  if (target != "0") {
    form.action = target;
    return true;
  } else {
    alert('Please select a product');
    return false;
  }
}