// JavaScript Document
/************************************************
 * If the browser is not IE on the MAC, 
 * then write this line of code. (it's CSS)
 * The reason: This code makes the pulldown menu
 * works weird on IE on the MAC only. 
 ***********************************************/

  var flag = false;
  var writewhat = "";
  if (!((navigator.appName.toLowerCase().indexOf('explorer') != -1) && (navigator.platform.toLowerCase().indexOf('mac') != -1))) {
	flag = true;
  }
  if (flag) {
    writewhat = '<style type=\"text\/css\">#archiveNav li { display:inline; position:absolute; }<\/style>';
	document.write(writewhat);
  }