$(document).ready(function() {		
	$('#panel').width(parseInt($('#mask').width() * $('#panel div').length));
	$('#panel div').width($('#mask').width());
	$('a[rel=panel]').click(function () {	
		var panelheight = $($(this).attr('href')).height();		
		$('a[rel=panel]').removeClass('selected');
		$(this).addClass('selected');		
		$('#mask').animate({'height':panelheight},{queue:false, duration:500});			
		$('#mask').scrollTo($(this).attr('href'), 800);		
		return false;
	});
	
});

$(document).ready(function() {
	$('#infobar .top').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
	});
});
