// JavaScript Document

  Rollimage = new Array()

  Rollimage[0]= new Image(100,44)
  Rollimage[0].src = "images/site_images/blog_icon.gif"

  Rollimage[1] = new Image(100,44)
  Rollimage[1].src = "images/site_images/blog_icon_down.gif"

  function SwapOut(){
    document.blogIcon.src = Rollimage[1].src;
    return true;
  }

  function SwapBack(){
    document.blogIcon.src = Rollimage[0].src; 
    return true;
  }