// When the page has loaded
jQuery(function($) {
	// Stop the # from appearing
	$('a[href^=#]').live( 'click', function(e) { e.preventDefault(); } );
	
	// Make hidden elements hide properly
	$('.hidden').hide().removeClass('hidden');
});