/*==============================================================================
// Generic JS Functions
// Jeremy Morgan <jdmorgan@syr.edu>
//============================================================================*/

function isIE() {
  return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
}

function doNothing() {
  //do nothing :-) 
}
