jQuery(document).ready(function($){

$.fn.slideshowHideAll = function() {
   $("#slideshow ul li a").css({ backgroundPosition: 'top center' });
   $("div.water , img.bnr").css({ display: 'none' });
   $("div.water ").css({ height: 0 });	
};


$.fn.slideshowFrame01 = function() {
   $().slideshowHideAll();
   $("#banner01").fadeIn("slow");
   $("#caption01").animate({ height: 52 }, "slow");
   $("a:contains('View First Banner')").blur();
   $("a:contains('View First Banner')").css({ backgroundPosition: 'bottom center' });
};

$.fn.slideshowFrame02 = function() {
   $().slideshowHideAll();
   $("#banner02").fadeIn("slow");
   $("#caption02").animate({ height: 52 }, "slow");
   $("a:contains('View Second Banner')").blur();
   $("a:contains('View Second Banner')").css({ backgroundPosition: 'bottom center' });
};

$.fn.slideshowFrame03 = function() {
   $().slideshowHideAll();
   $("#banner03").fadeIn("slow");
   $("#caption03").animate({ height: 52 }, "slow");
   $("a:contains('View Third Banner')").blur();
   $("a:contains('View Third Banner')").css({ backgroundPosition: 'bottom center' });
};

$.fn.slideshowFrame04 = function() {
   $().slideshowHideAll();
   $("#banner04").fadeIn("slow");
   $("#caption04").animate({ height: 52 }, "slow");
   $("a:contains('View Fourth Banner')").blur();
   $("a:contains('View Fourth Banner')").css({ backgroundPosition: 'bottom center' });
};

$.fn.buttonClick = function() {
   $(this).blur();
   $(this).css({ backgroundPosition: 'bottom center' });  
};


});
