function initialize()
	//runs at onload of window
	{
	
	obj = document.getElementById("navTop")
	
 	if (navigator.appName.indexOf('Microsoft') != -1)
      {
	  obj.style.top = 95; 
	  
	  } 
	  else 
	  {
	  obj.style.top = 86;
	 
	  }
	
	atumesaven = new screenObject(); 
	if (document.getElementById("articleBody") != null) initArticle();	  //lays out the article in columns(if one exists)
	userEventsInit(); //set up all user events
	//if document.onclick = eventHideMenu; //hides menus when the body is clicked on !! not needed anymore !!
	
	document.onmousemove = mousePosition; //moz
	
	windowTimer = setInterval("placeNavBar()",20);
	
	window.onresize = windowResize;

	initFavoritos(); //initialize clippings
	}
	

function closePage()
	{
	saveFavoritos();
	}

function displayFix()
	//in IE there is a bug will cause some elements to not draw on screen when the user uses the back button
	//the below fixes that problem by forcing the page to redraw
	{
	document.getElementById("bodyNode").style.display = "block"
	}	

window.onload = displayFix;

//
// going to load the window by a script call at the bottom of the page
// hopefully this will help speed up the page and not require images to load
// for the scripts to start
//

window.onunload = closePage;
/* Browser Fixes */

if (document.all) classFix = "className";
else classFix = "class"
