// global namespace for WeCar JavaScript
var global = {

  // handles the global initialization for the pages
  init:function(){
    
    if(document.getElementById('menu'))
      var nav = new Navigation(document.getElementById('menu'));
    
    if(document.getElementById('tabs'))
      var tabs = new Tabs(document.getElementById('tabs')); 
      
    if(document.getElementById('emailForm')){
    
      var emailForm = document.getElementById('emailForm');
      
      if(document.all){
        emailForm.onreadystatechange = function(){
          location.href="#";
        }
      }
    }
      
  }

}

window.onload = global.init;

