$(document).ready(function() {

	// validate the form using jquery.validate.min.js
	$("#brochure_form").validate();
	
	// pretty up the form with some user notifications
	$('option[title]').click(function() {
		$('#brochure-message').slideUp("normal").html(html);
		$('#brochure-error-message').slideUp("normal").html(html);
		
		var type_of_brochure = $(this).attr('title');
		var html = '<small>You will receive the <strong>' + type_of_brochure + '</strong> in the post</small>';
		
		$('#brochure-message').hide().html(html).slideDown("normal");
	});
	
	$('option.default').click(function() {
	
		$('#brochure-message').slideUp("normal");
		var html = "<small>Please select a brochure</small>";
		$('#brochure-error-message').slideDown("normal").html(html);
		
	});
	
});

