$(document).ready(function() {
	$('#download a').fancybox({
		'autoDimensions' 	: false,
		'width' 		 	: 440,
		'height'			: 420,
		'padding' 			: 0,
		'scrolling'			: 'no'
	});
	
	$('#brochure_form').submit(function() {
		var validate = true;
		
		if($('#name').val() == '') {
			$('#name').css('border-color' , 'red');			
			$('#response').append('You must fill out your name <br/>');	
			validate = false;		
		}
		
		if($('#email').val() == '') {
			$('#email').css('border-color' , 'red');			
			$('#response').append('You must fill out your email address');			
			validate = false;
		} 
		
		if(validate == false) return false;
	
		$.ajax({
			url: URI_ROOT + '/ajax.php',
			type: 'POST',
			data: $(this).serialize(),
			success: function(response){
				$('#response').html(response);
			}
		});		
		return false;
	});
});
