//<![CDATA[
		$(document).ready(
			function(){ // Wait for DOM to be ready.
			
				// FAQ hide/show toggle.
				// Definitions.
				$('.answer, dd').hide();
				$('.question, dt').addClass('link');
			    $('.questionblock .question, dt').click(
					function (){
						$(this).next().slideToggle('normal');
					}
				);

				// Feedback
				$('#fb_form').hide().validate({
					submitHandler: function(form) {
						$(form).ajaxSubmit({			
							target: "#Feedback"
						});
					}
				});
				
				$('#Feedback h3').addClass('link').text("Send feedback!").click(
					function (){
						$(this).next('#fb_form').slideToggle('slow');
					}
				);
				
				// light boxes.
				$('.gallery a').lightBox();
				$('a.locphotos').lightBox();

			}			
		);
	//]]>