/* Base JavaScript module */

/* Are we using the Browser of Evil? */
function is_ie()
{
  if (navigator.userAgent.match(/MSIE/)) {
    return(true);
  }
  else {
    return(false);
  }
}

/* Change width for right side if we are using the Browser of Evil */
function fix_ie()
{
  $('right_side').style.width = "45%";
}

function after_load()
{


  if (is_ie()) {
    //fix_ie();
  }
}

