
/* Twitter Feed */
/* Replaced with official twitter widget
    getTwitters('twitter_stream', {
        id: 'struq', 
        count: 1, 
        withFriends: true, // currently disabled due to change in Twitter API
        enableLinks: true, 
        ignoreReplies: true,
        template: ''
    });
*/
/* Animated Scroll */

$(document).ready(function() {
	$('a[href=#top]').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
});
