$(document).ready(function() {
	// show twitter the twit tweets
	$('#tweets').tweetable({
        username: 	"tbvlugus",
        time: 		true,
        replies: 	false
    });

	// let the sponsors fade
	$('#background').cycle({
        fx:         'fade',
        pause:      false,
        speed:      2000,
        timeout:    14000,
        slideExpr:  'img',
        random:     1
    });
});

// start cycling tweets after getting them from twitter
function cycleTweets() {
	if ( $('#tweets li').length < 1 ) {
		$('#tweets').append('<p>Geen tweets vandaag...</p>');
	}
	else {
		$('#tweets').cycle({
			fx:         'fade',
			pause:      1,
			speed:      500,
			timeout:    8000,
			slideExpr:  'p'
		}).fadeIn(500);
	}
}
