// JavaScript Document


/**
* runs once the page is loaded
*/
jQuery(document).ready(
    function(){

        jQuery(".navigation img").hover(
            function()
            {
                this.src = this.src.replace("inactive.gif","inactive-hv.gif");
            },
            function()
            {
                this.src = this.src.replace("inactive-hv.gif","inactive.gif");
            }
            );

        $('a.lightbox').lightBox();

    }	
    );


$(document).ready(
    function(){


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

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