  $(document).ready(function() 
  {
  // Hide the "view" div.
  	$('div.imgsplitter_hiddentext').hide();
  // Watch for clicks on the "slide" link.
  	$('div.imgsplitter_showhide').click(function() 
	{
  // When clicked, toggle the "view" div.
  $('div.imgsplitter_hiddentext').slideToggle(500);
  return false;
});
});

