$(document).ready(function() {
	
	/*Start the panels as up and slide them down randomly */
	$(".themepanel:not('.dummypanel') .panelcontent").css({ top : '-220px' });
	
	for(var i=0; i<$('.panelcontent').length; i++) {
		//Get a random delay
		var numRand = Math.floor(Math.random()*801);
		$('.panelcontent').eq(i).animate({opacity : 1}, numRand,function(){ $(this).animate({'top':'0'}); });
	}
	$(".themepanel:not('.dummypanel')").hover(
	function() {
		$(this).find('.panelcontent').addClass("rolledlink").animate({ top : '-220px' },'normal','linear').click(function() { var linkt = $(this).prev().find('a').attr("href"); window.location = linkt; });
	},
	function() {
		$(this).find('.panelcontent').removeClass("rolledlink").animate({ top : '0' },'normal','linear');
	});

});
