$(document).ready(function() {
	$('.fade').append('<div class="hover"></span>').each(function () {
	  var $span = $('> div.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(500, 1);
	  }, function () {
	    $span.stop().fadeTo(500, 0);
	  });
	});
	
	$('#slider').innerfade({
	animationtype: 'slide',
	speed: 750,
	timeout: 2000,
	type: 'random',
	containerheight: '1em'
	});

	$('#twitterSearch').liveTwitter('profestival OR theprofestival', {limit: 5, rate: 5000});
	
});