$(document).ready(function(){
	var h = window.location.hash;
	var tabs = $('div.month');
	var c = h.replace("#","");
	
	tabs.hide();
	if (h == "") {
		tabs.filter(':first').show();
	} else {
		tabs.filter(h).show();
		$('div.tab a').removeClass('active');
		$('div.tab a.' + c).addClass('active');
	}

	$('div.tab a').click(function () {
		tabs.hide();
		tabs.filter(this.hash).show();
		$('div.tab a').removeClass('active');
		$(this).addClass('active');
		window.location.hash = this.hash;
		return false;
	});
});
