
$('document').ready(

	function()
	{
		
		//testimonial slideshow

		$('#testimonialsSlideshow').cycle(			
		{
					timeout: 3000, 
					cleartype: 1, 
					speed: 400
		}
		);
		 
		 //banner slideshow nav setup
		 
		 $('#slidePages a').each(		 
			function(idx, val)
			{
				$(this).data('slide', idx);
			}
		 );
		 
		 //banner slideshow nav clicks
		 
		 $('#slidePages a').click(
			function()
			{			
				$('#slidePages li').removeClass('selected');
				var $navClick=$(this);
				$navClick.parent('li').addClass('selected');
				$('#bannerSlideshow').cycle($navClick.data('slide')); 
				return false;
			}
		 );	

		//testimonials slideshow					
			$('#bannerSlideshow').cycle({ timeout: 3000, cleartype: 1, speed: 400 });			
		
		
		$('#gallery-accordian').accordion();		
});
