
$(document).ready(function() {
	$(".tweet").tweet({
        avatar_size: 32,
        count: 3,
        username: "andyepx",
        loading_text: "Loading tweets..."
      }).bind("loaded",function(){$(this).find("a").attr("target","_blank");});
	  
	$("#portfolio").hide();
	$("#getintouch").hide();
	
	$("#menu a, .top-left a").click(function(){
		
		var from = "";
		var to = $(this).attr("href");
		
		if ($("#portfolio").is(":visible")) { from = "#portfolio"; }
		else if ($("#getintouch").is(":visible")) { from = "#getintouch"; }
		else if ($("#home").is(":visible")) { from = "#home"; }
		
		if (from != to) 
			$(from).slideUp("slow", function() { $(to).slideDown("slow"); });
				
		return false;
	});
	
	$("#formbutton").click(function() {
		$.post("sendEmail.php", $("#contactform").serialize(),
			function(data){
				$("#name").val("");
				$("#email").val("");
				$("#message").val("");
				$("#formStatus").html("<div style='padding: 2px 0 4px 0;'>Message successfully sent, thanks!</div>");
				return false;
			});
	});
	
});



