$(document).ready(
    function(){

        //fetch and loads the twitter data
        setTimeout ( "loadTwitterFeed()", 500 );
    });

function loadTwitterFeed() {
    //$("#hpsplash").append('loading...');
    $("#xtwitter").load("/includes/ajax/fetch_twitter.php");
}


