$(document).ready(function() {

			/* Contact Button */
			$("#contactbtn").click(function() {
				$("#wrapper").fadeOut('slow', function () {
				$("#wrapper2").fadeIn('slow');
				});
			});
			

			/* Contact Form */
			$("#loading").ajaxStart(function(){
				$('#emptyfields').hide();
				$('#bademail').hide();
				$('#crackattempt').hide();
				$('#nohtml').hide();
				$('#success').hide();
				$(this).show();
			});
				
			$("#loading").ajaxStop(function(){
				$(this).hide();
			});

			$('#myForm').ajaxForm(function(data) {
				
				if (data==1){
					$('#success').fadeIn("slow");
					$('#myForm').resetForm();
				}
				else if (data==2){
					$('#emptyfields').fadeIn("slow");
					$('#nameinput').addClass("formrequired");
					$('#emailinput').addClass("formrequired");
					$('#messageinput').addClass("formrequired");
				}
				
				else if (data==3)
				{
					$('#bademail').fadeIn("slow");
				}
				
				else if (data==4)
				{
					$('#crackattempt').fadeIn("slow");
				}
				
				else if (data==5)
				{
					$('#crackattempt').fadeIn("slow");
				}
				
				else if (data==6)
				{
					$('#nohtml').fadeIn("slow");
				}
				
			});
});