$(function() {
	var activeId = null;
	
	var setContent = function(id) {
		if (id === activeId) { return; }
		if (activeId) {
			$("a#menu" + activeId).removeClass("active");
			$("div#content" + activeId).hide();
		}
		
		activeId = id;
		$("a#menu" + activeId).addClass("active");
		$("div#content" + activeId).show();
	}
	
	$("div#menu a").mouseover(function(evt) {
		evt.preventDefault();
		var match = this.id.match(/^[a-z]+(\d+)$/);
		if (match) {
			setContent(parseInt(match[1], 10));
		}
	});

	// Initialise 'home' content
	setContent(1);
});



