$(document).ready(function() {
	
	$('#form').submit(function(eve){
		eve.preventDefault();
		
		var emailA		= $('#email').val();
		var firstN		= $('#first_name').val();
		var lastN		= $('#last_name').val();
		
		$.post('/newsletter/process',{
			email: emailA, first_name: firstN, last_name: lastN},
			function(html){
			if(parseFloat(html)){
				$('.message').html('<h3><strong>Thank you</strong> <span>You have successfully signed-up for our free reports.</span></h3>').fadeIn('slow');
				$('#form').fadeOut('slow');
			}else{
				$('.message').html('<p>'+html+'</p>').fadeIn('slow');
			}
		});
	})
	
	$('#email').clearingInput();
	$('#first_name').clearingInput();
	$('#last_name').clearingInput();
	
	$(".contact_pop").fancybox({
		'hideOnOverlayClick'	: false,
		'overlayColor'			: 'rgb(255,255,255)',
		'overlayOpacity'		: 0.9,
		'overlayShow'			: true,
		'type'					: 'iframe'
	});
});