$(document).ready(function(){
    $("#tweets").tweet({
        username: "fusionmonarch",
        join_text: "auto",
        avatar_size: 32,
        count: 4,
        auto_join_text_default: "we said,",
        auto_join_text_ed: "we",
        auto_join_text_ing: "we were",
        auto_join_text_reply: "we replied to",
        auto_join_text_url: "we were checking out",
        loading_text: "loading tweets..."
    });
	
	$('form').attr('target', 'formframe').submit(function(){
		$(this).parent().css({
			'height': $(this).parent().height()
		});
		var msg = $(this).find('input[name="success"]').val();
		$(this).css({
			'overflow': 'hidden'
		}).animate({
			'height': 0
		}, 200, 'linear', function(){
			$(this).html('<p>'+msg+'</p>').animate({
				'height': '150px'
			}, 200);
		});
	});
});