$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
 // toggles the slickbox on clicking the noted link
 $('#whiting').hide();
  $('a#toggle-whiting').click(function() {
   $('#whiting').toggle(400);
   $(this).text($(this).text() == 'Show quote' ? 'Hide quote' : 'Show quote'); // <- HERE
     return false;
  });
 $('#hague').hide();  
  $('a#toggle-hague').click(function() {
   $('#hague').toggle(400);
   $(this).text($(this).text() == 'Show quote' ? 'Hide quote' : 'Show quote'); // <- HERE   
   return false;
  });  
/*  
   $('.slideshow').cycle({
    pause: 1,
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
*/
  $("#progressbar").progressbar({ value: 100 });
});
