


/*
$(function() {
   


      $("#slideshow").cycle({
          timeout: 2000,
          speed:   100,
          pager:  '#nav'      });
      
});


*/


function showBox(sWindow){
	document.getElementById(sWindow).style.display='block';
	document.getElementById(sWindow).style.visibility='visible';
}

function hideBox(sWindow){
	document.getElementById(sWindow).style.display='none';
	document.getElementById(sWindow).style.visibility='hidden';
}



 
