﻿$(function(){
	$('a').live('focus', function(){
		$(this).blur();
	});
	
	var hash = window.location.hash.slice(1);
	if ( hash ) {
		show(hash);
	} else {
		show('start');
	}
	$('#menu a').click(function(){
		var hash = $(this).attr('href').slice(1);
		show(hash);
	});	
	function show(hash) {
		if ( $('#'+hash).length == 1) {
			$('.box').hide();
			$('#'+hash).slideDown();
			$('#menu').find('a').removeClass('active');
			$('#menu').find('a[href="#'+hash+'"]').addClass('active');
		}
	}
	
});
