$(document).ready(function(){

	$("a#newsletter_btn").click(function() {
		$("#newsletter_wrapper").slideToggle("slow");
	});
	$("a#close_nl").click(function() {
		$("#newsletter_wrapper").slideToggle("slow");
	});
		
		
	/* Forward form set-up */

			$("form#send_form").ajaxForm({ success: function(data) {
		if (data == 1){ // success
			$("#send_form").resetForm();
			$("p#fwrd_success").fadeIn("slow");
			$("#send_form #submitinput").fadeOut("fast")
		}
		else if (data==2){ // server error
			$("p#fwrd_error").fadeIn("fast");
			$("p#fwrd_error").text("Error! Try again please.").fadeIn(500).fadeIn(5000).fadeout("fast");
		}
		else if (data==3){ // blank fields or invalid email
			$("p#fwrd_error").fadeIn("fast");
			$("p#fwrd_error").text("Please fill correctly all necessary fields.").fadeIn(500).fadeIn(5000).fadeout("fast");
		}
		}

		
		});

		
});