/* Ajax.js  - Function to pull in Tweets */
$(function(){
	var twitter = $("#twitter-text");
    $.get("includes/ajax-twitter.php", "t=1", function(xml) {
        twitter.fadeOut('slow', function (){
            twitter.html(xml).fadeIn('slow');
            $('#twitter').append('<div class="arrow" />')
           	$('.arrow').animate({ bottom: '-=40' });
    	});
	}, "html");
});