
// scroll to
$(document).ready(function() {
	$('#navigation ul').localScroll({
   target:'#content',
   axis:'xy',
   queue:true,
});

		
	
});

// link colours
$(document).ready(function() {
	
	$("#navigation ul li a:first").addClass("active"); //add to first link
	
	$("#navigation ul li a").click(function () { 
      $("#navigation ul li a").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); 
    });
	
});



// form selects
$(document).ready(function() {
	$('#enquiry').change(function() {
	if ( $(this).val() == 'Masterclass' ) {
		$('#form-masterclass').show('slow');
		$('#form-party').hide('slow');
		$('#form-event').hide('slow');
	}
	else if ( $(this).val() == 'Party' ) {
		$('#form-masterclass').hide('slow');
		$('#form-party').show('slow');
		$('#form-event').hide('slow');
	}
	else if ( $(this).val() == 'Event' ) {
		$('#form-masterclass').hide('slow');
		$('#form-party').hide('slow');
		$('#form-event').show('slow');
	}
	else {
		$('#form-masterclass').hide('slow');
		$('#form-party').hide('slow');
		$('#form-event').hide('slow');
	}
	});
});


$(document).ready(function() {
	$('#party_venue').change(function() {
	if ( $(this).val() == 'Other' ) {
		$('#venue_other').show('slow');
	}
	else  {
		$('#venue_other').hide('slow');
	}
	});
});
