/**
 * Website loader
 * Load the javascript interfaces and check the compatibilities.
 */

jQuery(document).ready(function()
{
	//Hide the compatibility menu
	$("#nojavascript").hide();
	$("body").css("background", "black");
	
	//Hide the scrollbars
	$("body").css("overflow", "hidden");
	
	//Load the game
	var game = new Game();
	$("#game").load("game/index.html", {}, function (){game.init();});
	$("#game").show();
	
	//Load the menu
	var menu = new Menu(game);
	$("#menu").load("menu/index.html", {}, function (){menu.init();});
	$("#menu").show();
});
