wraphandler = {
  init: function() {
    if (!document.getElementById) return;
    // set up the appropriate wrapper
    wraphandler.setWrapper();
    // and make sure it gets set up again if you resize the window
    wraphandler.addEvent(window,"resize",wraphandler.setWrapper);
  },

  setWrapper: function() {
    // width stuff from ppk's evolt.org/article/document_body_doctype_switching_and_more/17/30655/index.html
    var theWidth = 0;
    if (window.innerWidth) {
      theWidth = window.innerWidth
    } else if (document.documentElement && document.documentElement.clientWidth) {
      theWidth = document.documentElement.clientWidth
    } else if (document.body) {
      theWidth = document.body.clientWidth
    }
    var theHeight = 0;
    if (window.innerHeight) {
      theHeight = window.innerHeight
    } else if (document.documentElement && document.documentElement.clientHeight) {
      theHeight = document.documentElement.clientHeight
    } else if (document.body) {
      theHeight = document.body.clientHeight
    }
    if (theWidth != 0 && theHeight != 0) {
      if (theWidth < 975 || theHeight < 590) {
        document.getElementsByTagName('html').item(0).className = '';
        document.getElementById('flashcontent').className = 'altwrapper';
      } else {
        document.getElementsByTagName('html').item(0).className = 'hide_overflow';
        document.getElementById('flashcontent').className = 'mainwrapper';
      }
    }
  },

  // addEvent stuff from John Resig's ejohn.org/projects/flexible-javascript-events
  addEvent: function( obj, type, fn ) {
    if ( obj.attachEvent ) {
      obj['e'+type+fn] = fn;
      obj[type+fn] = function(){obj['e'+type+fn]( window.event );}
      obj.attachEvent( 'on'+type, obj[type+fn] );
    } else {
      obj.addEventListener( type, fn, false );
    }
  }
}

wraphandler.addEvent(window,"load",wraphandler.init);
wraphandler.addEvent(window,"load",initialize);
