$(document).ready(function(){
    
     // FIRE UP HOME IMAGE ROTATOR
	 $('#the-slides').cycle({
          speed: 4000,
			timeout: 7000,
			delay: 1000
     });
	 
     // FIRE UP TOGGLING ITEMS
	 var showText="Show";
     var hideText="Hide";
     $(".toggle").prev().append(' [<a href="#" class="toggleLink">'+showText+'</a>]');
     $('.toggle').hide();
     $('a.toggleLink').click(function() {
     
          if ($(this).text()==showText) {
          	$(this).text(hideText);
          }
          else {
          	$(this).text(showText);
          }
          $(this).parent().next('.toggle').slideToggle('slow');
          return false;
     });	 
	 
});
