// JavaScript Document
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: thamba | http://www.thamba.com/
Adapted by Lee Underwood */

function hideall(){
  for (count=1; count<18; count+=1) // set "count" to one more than the total images/links
  document.getElementById('box'+count).style.display='none';
 
}

function showbox(box){
  document.getElementById(box).style.display='block';
}
function hidebox(box){ 
 document.getElementById(box).style.display = 'visible';
 
}

