$(function(){

	twttr.anywhere(function(twitter) {
		twitter.hovercards();
		twitter('.follow').followButton('twilightinc');
	});

	$('ol#navigation li a').click(function(){
		id = $(this).attr('href');
		$('html, body').animate({scrollTop: $(id).offset().top}, {duration: 1000, easing: 'swing'});
		return false;
	});

	$('ol#cycle').cycle({ 
    	fx: 'scrollLeft',
		timeout: 10000,
		pause: true,
		pager: '#page',
		containerResize: false,
	    pagerAnchorBuilder: function() { 
	        return '<a href="#">&#8226;</a>';
	    }
	});

});