function maps()
{
var i, j;
var map=new Array();
for(i=0;i<24;i++)
{
map[i] = new Array();
for(j=0;j<24;j++)
{
map[i][j]='0';
}
}}