// Script for the news banner rotation located at the top of the page.
  
$(document).ready(
  function(){$(".news").newsticker(5000); }
);

// Script for the news slider home page.


$(document).ready(function(){
  $('.sample-content ul li:first').addClass('current');
});

// Script for Pete Lockett bio info slider

$(document).ready(function(){	

	$('.slide-down').addClass('test123');
				
	$('a.btn-toggle').click(function(){
	  $('.slide-down').slideDown('normal');
		$('.slide-down').toggleClass('test123').stop();
		return false;
	});

});
