// JavaScript Document
function getContent(vars)
{
	$.ajax({
		url: "server.php" + vars,
	  	cache: false,
	  	success: function(html)
		{
			$("#content").html(html);
		},
 		error:function (xhr, ajaxOptions, thrownError)
		{
			$("#content").html("Invalid request!");
 		}
	});
	return false;
}

$(document).ready(function() 
{
	initMenu();
	getContent('?c=Home');
	initSetTheColor();
});
