<script type="text/javascript">$(document).ready(function(){ var minimumHeight = 500; var maximumWidth = 1000; $('#imgPlaceDiv').css({ 'min-height':minimumHeight, 'height':'', 'width':'' }); $('#imgWrapperAnchor').css({ 'max-height':'', 'max-width':'' }).attr('title',''); $('#imgGalleryImage').css({ 'max-height':'', 'max-width':maximumWidth }).unbind(); $('#imgCaptionDiv').css({ 'text-align':'center', 'width':'' });})var showGalleryImage = function(sGalleryImgPath, sDescription) { $('#imgGalleryImage').fadeOut('slow', function(){ $('#imgGalleryImage').attr('src', sGalleryImgPath).load(function(){ $('#imgGalleryImage').fadeIn('slow'); $('#imgCaptionDiv').html(sDescription); }); });}</script>
<style type="text/css">#imgCaptionDiv { font-size: 120%; font-weight: bold; color: #000000;}</style>