/*
	This file contains all the javascript required to run
	once the DOM has been built out and the page has
	finished loading.
*/
$(document).ready(function() {
	// Feed switcher
	$('.feed-choice a').bind("click", function(e) {
		$('.feed-option').toggleClass('display-none');
		$('.feed-choice li').toggleClass('current');
		
		return false;
	});
	/*
	$('a[href=#]').bind("click", function(e) {
		alert("Link not implemented.");
		
		return false;
	});
	*/
	$('#newsletterForm').validate();
	$('#newsletterFooterForm').validate();
	$('#enquiryForm').validate();
	$('#brochureOrder').validate();
});