// Rare IT Top and Bottom Banner Image Swap
// For use of www.rareit.com only */
// Webdesign and build by 2% Inspiration - www.2percentinspiration.com */
// Copyright 2006 */
<!--
var banner = new Array()
banner[banner.length] = {
  info:'Rare IT',
  top:'images/rare_top_banner.jpg',
  bottom:'images/rare_bot_banner.jpg'
};

var BannerImage = Math.round(Math.random()*(banner.length-1));
function showHeaderImage(){
  document.write('<img src="'+banner[BannerImage].top+'" width="800" height="159" alt="'+banner[BannerImage].info+'" class="top_banner" />');
}
function showFooterImage(){
  var myObj = document.getElementById('shadow-bottom');
  myObj.style.backgroundImage="url('"+banner[BannerImage].bottom+"')";
}
//-->