$(document).ready(function(){
    
	$('#headerTab').hover(
        function () {
            //show its submenu
            $('#headerTabInside').slideDown('fast');
 
        },
        function () {
            //hide its submenu
             $('#headerTabInside').slideUp('fast');      
        }
    );
	
	//Get the twitter feed
	var username='setwise'; // set user name
	var format='json'; // set format, you really don't have an option on this one
	var url='http://api.twitter.com/1/statuses/user_timeline/'+username+'.'+format+'?callback=?'; // make the url

	$.getJSON(url,function(tweet){ // get the tweets
		$("#footerTweet").html(tweet[0].text); // get the first tweet in the response and place it inside the div
	});

	
});



















