
$('document').ready(

	function()
	{				
		
		//REPEATED ON VARIOUS PAGES SEMI_FOOTER
		
		//testimonial slideshow
		$(function() {
				$('#testimonialsSlideshow').cycle(			
				{
					timeout: 8000, 
					cleartype: 1, 
					speed: 400
				}
			 );
		 }
		 );
		
		
		$('#aboutTn, #helpTn').toggle(
		
		function()
		{
			hideId=$(this).attr('id')+"_hide";
			$('div.faded-bg h2 a#' + $(this).attr('id')).addClass('hidden');
			$('#'+hideId).hide();
			
			return false;
		},
		function()
		{
			hideId=$(this).attr('id')+"_hide";
			$('div.faded-bg h2 a#' + $(this).attr('id')).removeClass('hidden');
			$('#'+hideId).show();		
			return false;
		}
		
		);
	}
);
