
function pageload(hash) {
	if(hash) {
		if($.browser.msie) {
			hash = encodeURIComponent(hash);
		}
		toggleThis(hash);
	} else {
		// start page
		toggleThis('home');
	}
}
	

function toggleThis(what) {
	//turn everything off
	$('.toggles').hide();
	$('#nav li a').attr('id','');
	//turn on the selected one
	$('#copy-'+what).show();
	$('#'+what+'-link a').attr('id','current');
}
