// common javascript functions

$(document).ready(function() {

  // fix IE 6 background image caching problem
  if ($.browser.msie) {
    try {
      document.execCommand("BackgroundImageCache", false, true);
    } catch(err) {}
  }
  
  rotateElements('.rotator', 7000, 'ul li', true, 'slow');
  // container class, rotate delay, element to rotate, autoplay, fade speed

});
