// JavaScript Document
    var Overlay = {
        Build : 1,
        Speed : 100,
        FadeOn : 0.8,
        Init : function() {
          $('#overlay').fadeTo(Overlay.Speed, 0);
        },
        Show : function() {
          $('#overlay').show(function() {
            $(this).fadeTo(Overlay.Speed, Overlay.FadeOn);
            });
        },
        Hide : function() {
          $('#overlay').fadeTo(Overlay.Speed, 0, function() {
            $(this).hide();
          })
        }        
      }

// AJAX TERRAINS LISTE
function GetTerrainsList(pos) {
	$.post(
		'/ajax/terrains_liste.html',
		{
			'pos':pos
		}, function(data) {
			$('#content_mod').html(data);
		}, 'html');
}

function app_societe_DoFSCommand(command, args) {
	if (command=='webcomtv' && args=='quit') {
		webcomtv.Close();
	}
}

var webcomtv = {
	Close : function() {
		$('#webcomtv').html('');
		$('#initial-state').show();
	}
}
