//Clickable buckets
window.onDomReady(function() {
if (document.all&&document.getElementById) {
 navRoot = document.getElementById("buckets");
  for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="UL") {
	 node.onmouseover=function() {
	 this.className+=" bucket_over";
	 }
	node.onmouseout=function() {
	this.className=this.className.replace(" bucket_over", "");
    }
   }
  }
}
});
window.onDomReady(function() {
  $('buyers_bucket').addEvent('click', function(){
    location.href='buy_reg.htm';
  });
  $('exhibitors_bucket').addEvent('click', function(){
    location.href='exhibitor_options.htm';
  });
  $('jogs_club_bucket').addEvent('click', function(){
    location.href='buy_reg.htm';
  });
});
