$(document).ready(function () {
	
	//$('#content-container').jScrollPane({scrollbarWidth: 18, scrollbarMargin: 0});
	
	$('div, a').focus(function (event){
		this.blur();
	});
	
});

function MOREintro_DoFSCommand(command, value)
{
	more.menu.show();
}

var more = new function () {
	
	this.menu = new function () {
		
		this.show = function () {
			$("#menu-skip").hide();
			$("#menu-container").fadeIn('slow');
		}
		this.hide = function () {
			$("#menu-container").hide();
			$("#menu-skip").show();
		}
	}
}