function getInternetExplorerVersion()
// Returns the version of Internet Explorer or a -1
// (indicating the use of another browser).
{
  var rv = -1; // Return value assumes failure.
  if (navigator.appName == 'Microsoft Internet Explorer')
  {
    var ua = navigator.userAgent;
    var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
    if (re.exec(ua) != null)
      rv = parseFloat( RegExp.$1 );
  }
  return rv;
}

/* Load up Jquery */
document.write("<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>");

/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
var ver = getInternetExplorerVersion();
if ( ver == -1 )
{
    document.write("<script type='text/javascript' src='scripts/fadeslideshow.js'></script>");
}

//--------------------------------------------------------------------------------------
//-- 
//-- onload and onresize functions
//--
//--------------------------------------------------------------------------------------
window.onload = function() {
  setFooter();
}

window.onresize = function() {
  setFooter();
}
