$(function(){
	
	$('#slides').cycle({
		fx:					'fade',
		speed:				1000,
		timeout:			4000,
		pager:				'#pager',
		pagerAnchorBuilder:	function(){
								return '<a href="#"></a>'
							},
		before:				onBefore
	})
	
	function onBefore() {
		$('#follow a').attr('href', this.alt)
		$('#follow a span').html(this.title)
	}
	
	$('#twitter .loader').fadeIn(2000)
	$.post('plugins/plugin.twitter.php', function(data) {
		$('#twitter .container').html(data).fadeIn()
	})
	
	$('#menu .right-menu li').hover(
		function() {	$('div', this).fadeIn()	},
		function() {	$('div', this).fadeOut()	}
	)
	
})
