$(document).bind("ready", function(){
	if(window.location.hash == "sent"){
		$('body > div > form').remove();
		$('body > div').append("<p>Thank you, your message has been sent</p>")			   
	}
	$("form").bind("submit", function(){
		$.ajax({
			type: "POST",
			url: $(this).attr("action"),
			data: $(this).serialize(),
			success: function(data){
				$("form").fadeOut(300, function(){
					$('body > div').append("<p>Thank you, your message has been sent</p>")
				});
			}
		});
		return false;
	});
});

$(window).bind("load", function(){
	$('.lightbox').lightBox();
});
