function addWidth()
{
	if (jQuery('#metertwo').length>0) {
		jQuery('#metertwo').css('width', (jQuery('#metertwo').width() + 4)+'px');
		var thepercentage = parseInt(jQuery('#Percent').html());
		jQuery('#Percent').html((thepercentage+1)+"%");
	}
}
var preloadTO;
function skipAdd()
{
	window.clearTimeout(preloadTO);
	jQuery('#myAdd').remove();
	jQuery('#myDiv, .infoabovegame').show();
}
function preLoad()
{
	preloadTO = window.setTimeout("skipAdd();", 12000);
	window.setTimeout("document.getElementById('ToTheGame').innerHTML='<a onclick=\"skipAdd();\" title=\"Game loaded. Click here to start the game\"><span class=\"linkwithouthref\">Game loaded. Click here to start the game</span></a>';", 4000);
	for(i=1;i<100;i++)
	{
		setTimeout("addWidth();", (i*120));
	}
}
