$(document).ready(function(){
    $(".tweets").tweet({
        username: "gazzwi86",
        join_text: "auto",
        avatar_size: 51,
        count: 4,
        auto_join_text_default: "said,", 
        auto_join_text_ed: "",
        auto_join_text_ing: "was",
        auto_join_text_reply: "replied to",
        auto_join_text_url: "were checking out",
        loading_text: "loading tweets..."
   });
});

$(document).ready(function(){
	
	$('#myForm').ajaxForm(function(data) {
		if (data==1){
		
			$('#bademail').fadeOut("slow");
			$('#badserver').fadeOut("slow");
			$('#success').fadeIn("slow");
			$('#myForm').resetForm();
		
		} else if (data==2){
		
			$('#badserver').fadeIn("slow");
		
		} else if (data==3) {
		
			$('#bademail').fadeIn("slow");
		}
	
	});
});