jQuery(document).ready(function($) {

	$('#wrapper').scrollTo('#home', 800);	

	$('a.panel').click(function () {

		$('a.panel').removeClass('selected');
		$(this).addClass('selected');
		
		current = $(this);
		
		$('#wrapper').scrollTo($(this).attr('href'), 800);		
		
		return false;
	});
	
});

