function initialiseForm(showExtras)
{
	if (!showExtras)
	{
		$("#support_section").hide();
	}
	$("#submit_support").bind("click", function(e)
	{
    	this.checked ? $("#support_section").show('slow') : $("#support_section").hide('slow');
    });
	
}


$(document).ready(function(){

	$('#latest-info-tabs li a').not('.pdf').click(function(){
		var id = $(this).attr('href');

		$(this).parent().parent().find('a').removeClass('selected');
		$(this).addClass('selected');
		$('.section').hide();
		$(id).show();
		return false;
	});

});