// DOM onload
document.observe("dom:loaded", function() {  
  new Slides({container:'#banner', slides_container:'ul.banners', delay:6000})
});


// Global Window Onload
Event.observe(window, 'load', function() {

  // // Will hide any event buckets with a tiny 1px image.
  // // The Live Chat returns a 1px image when offline, so this will hide the asset properly.
  // $$('.event_bucket img').each(function(img){
  //   if (img.getHeight()<=1) { 
  //     img.up('.event_bucket').hide(); 
  //   }
  // })

});
