  <!-- hide from non JavaScript Browsers

//  Rollimage = new Array()
//
//  Rollimage[0]= new Image(300,220)
//  Rollimage[0].src = "images/sidebar1/videoImg_up.png"
//
//  Rollimage[1] = new Image(300,220)
//  Rollimage[1].src = "images/sidebar1/videoImg_down.png"
//
//  function SwapOut(){
//    document.rollover.src = Rollimage[1].src;
//    return true;
//  }
//
//  function SwapBack(){
//    document.rollover.src = Rollimage[0].src; 
//    return true;
//  }


var revert = new Array();
var inames = new Array('boxOne', 'boxTwo', 'boxThree', 'video', 'kycpa', 'bbb', 'aicpa', 'occoc');

// Preload
if (document.images) {
  var flipped = new Array();
  for(i=0; i< inames.length; i++) {
    flipped[i] = new Image();
    flipped[i].src = "http://www.kingcpa.net/wp-content/themes/King%20CPA%20Theme/images/rollover/"+inames[i]+"2.png";
  }
}

function over(num) {
  if(document.images) {
    revert[num] = document.images[inames[num]].src;
    document.images[inames[num]].src = flipped[num].src;
  }
}
function out(num) {
  if(document.images) document.images[inames[num]].src = revert[num];
}
// - stop hiding        
