
// Preloading will stop the animation in IE

// Using individual images for EVERY rollover..

function loadEntries()
   {
      document.getElementById("entries").className = "entryloader";
   }
function unLoadEntries()
   {
      document.getElementById("entries").className = "entryunloader";
   }
function loadImages()
   {
      document.getElementById("images").className = "imageloader";
   }
function unLoadImages()
   {
      document.getElementById("images").className = "imageunloader";
   }
function loadArchive()
   {
      document.getElementById("archive").className = "archiveloader";
   }
function unLoadArchive()
   {
      document.getElementById("archive").className = "archiveunloader";
   }
function loadAbout()
   {
      document.getElementById("about").className = "aboutloader";
   }
function unLoadAbout()
   {
      document.getElementById("about").className = "aboutunloader";
   }
function loadContact()
   {
      document.getElementById("contact").className = "contactloader";
   }
function unLoadContact()
   {
      document.getElementById("contact").className = "contactunloader";
   }
function changeIcon()
   {
      document.getElementById("icon").className = "iconloader";
   }
function returnIcon()
   {
      document.getElementById("icon").className = "iconunloader";
   }

