// JavaScript Document
$(document).ready(function() {
		 
		// Attach the cycle function to the Viewer
		$('#Viewer').cycle({
			fx:'fade',
			timeout: 4000,
			speed: 500,
			delay: -1000
		});	 // end SplashGallery cycle
		
				 
				 
		//Style rows in schedule
		$("#Schedule tr:odd").addClass('Odd');
		$("table.ContentDisplay tr:odd").addClass('Odd');
		
		
		//Remove language toggle element as required
		$('#RegistrationForm #HeaderMenu').remove();
		
		
		// Set toggle links for FAQ pages
		$('.Question').wrapInner("<a></a>");
		$('.Answer').hide();								 
		$('.Question').toggle(
			  function(){
				  $(this).next('.Answer').fadeIn();
				  $(this).addClass('Close');
			  },
			  function(){
				  $(this).next('.Answer').fadeOut();
				  $(this).removeClass('Close');   
			  }
		); //end toggle
   
			 
}); //end ready function
