var loader_map = function()
{
	var id, fix, pub;
	var nameList = new Array();
	var iNameList = 0;
	
	this.start = function( node )
	{
		id = node.getAttribute('id');
		if( node.getAttribute('fix') != null && node.getAttribute('fix') == "true" )
			fix = true;
		else
			fix = false;
		
		fixPage = fix;
		
		this.makeToPlay( node );
		
		makeNextObject();
	}
	
	this.makeToPlay = function( node )
	{
		for( var i = 0; i < node.childNodes.length; i++ )
		{
			if( node.childNodes[i].nodeType != 3 )
			{
				insertToPlay( node.childNodes[i].firstChild.nodeValue, document.getElementById('map_contained') );
				nameList[iNameList] = node.childNodes[i].firstChild.nodeValue;
				iNameList++;
			}
		}
	}
}