$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('.foliobtn').hide();
  $('.folionamedate').show();
  $('.foliologo').hide();
  $('.folioimage').show();
  
 // shows the slickbox on clicking the noted link
  $('.folioitem').mouseover(function() {
 $('.foliobtn',this).show();
 return false;
  });
 $('.folioitem').mouseout(function() {
 $('.foliobtn',this).hide();
 return false;
  });
  $('.folioitem').mouseover(function() {
 $('.folionamedate',this).hide();
 return false;
  });
  $('.folioitem').mouseout(function() {
 $('.folionamedate',this).show();
 return false;
  });
  $('.folioitem').mouseover(function() {
 $('.foliologo',this).show();
 return false;
  });
 $('.folioitem').mouseout(function() {
 $('.foliologo',this).hide();
 return false;
  });
});