/* Hides the scroll bar */
function hideAddressBar() { 
	window.scrollTo(0, 1); 
}
/* Runs some onload initialize logic.  There isn't anything here at the moment, but this is where
logic to tidy up the dashboard might go*/
function initializeIphone() {
	
}

/* Adds onload functions */
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}
