$(document).ready(function(){
	$("#top").hide();
	$("#body").hide();
	$("#leftside").hide();
	$(".portbg").hide();
	$("#about").hide();
	$("#contact").hide();
	$("#sendid").hide();
	
	$("#top").fadeIn("slow",function(){
		$("#body").slideDown("slow",function(){
			$("#leftside").fadeIn("slow",function(){
				$(".portbg").fadeIn("slow", function(){															 
				});																			
				$("#about").fadeIn("slow");
				$("#contact").fadeIn("slow");		
			});
		});													 
	});
	
	
	var options = {
		target:	"#sendoutput",
		success: showResponse,
		resetForm: true
	};
	
	$("#from").focus(function(){
		if($(this).val() == "Enter email address"){
			$(this).val("");
		}
	});
	
	$("#submitform").click(function(){
		$("#contact-form").ajaxSubmit(options); 
		return false;
	});
});
function showResponse(){
	$("#sendoutput").fadeIn();
}