jQuery(document).ready(function() {
	// On click of a menu link
	jQuery('a.menulink').click(function(){
		// Hide all content
		jQuery('div.contentItem').attr('class', 'contentItem hidden');
		// Find out the current id
		var id = this.id;
		// If the current content is the main page, hide the normal content window
		if (id=='main') {
			jQuery('div#content').hide();
			jQuery('div#frontcover').show();
		} else {
			jQuery('div#frontcover').hide();
			jQuery('div#content').show();
			jQuery('div#' + id).attr('class', 'contentItem visible');
		}
		return false;
	});
});
