if(document.images) {
  pics = new Array(); 
  pics[1] = new Image();
  pics[1].src = "/static/images/home.png"; 
  pics[2] = new Image();
  pics[2].src = "/static/images/over/home.png";

  pics[3] = new Image();
  pics[3].src = "/static/images/game.png"; 
  pics[4] = new Image();
  pics[4].src = "/static/images/over/game.png";

  pics[5] = new Image();
  pics[5].src = "/static/images/download2.png"; 
  pics[6] = new Image();
  pics[6].src = "/static/images/over/download2.png";

  pics[7] = new Image();
  pics[7].src = "/static/images/community.png"; 
  pics[8] = new Image();
  pics[8].src = "/static/images/over/community.png";

  pics[9] = new Image();
  pics[9].src = "/static/images/media.png"; 
  pics[10] = new Image();
  pics[10].src = "/static/images/over/media.png";

  pics[11] = new Image();
  pics[11].src = "/static/images/support.png"; 
  pics[12] = new Image();
  pics[12].src = "/static/images/over/support.png";
  
  pics[13] = new Image();
  pics[13].src = "/static/images/top_1.png"; 
  pics[14] = new Image();
  pics[14].src = "/static/images/over/top_1.png";
  
  pics[15] = new Image();
  pics[15].src = "/static/images/top_2.png"; 
  pics[16] = new Image();
  pics[16].src = "/static/images/over/top_2.png";
  
  pics[17] = new Image();
  pics[17].src = "/static/images/top_3.png"; 
  pics[18] = new Image();
  pics[18].src = "/static/images/over/top_3.png";
  
  pics[19] = new Image();
  pics[19].src = "/static/images/top_4.png"; 
  pics[20] = new Image();
  pics[20].src = "/static/images/over/top_4.png";
  
  pics[21] = new Image();
  pics[21].src = "/static/images/top_5.png"; 
  pics[22] = new Image();
  pics[22].src = "/static/images/over/top_5.png";
  
  pics[23] = new Image();
  pics[23].src = "/static/images/top_6.png"; 
  pics[24] = new Image();
  pics[24].src = "/static/images/over/top_6.png";
  
  pics[25] = new Image();
  pics[25].src = "/static/images/top_7.png"; 
  pics[26] = new Image();
  pics[26].src = "/static/images/over/top_7.png";
  
  pics[27] = new Image();
  pics[27].src = "/static/images/top_8.png"; 
  pics[28] = new Image();
  pics[28].src = "/static/images/over/top_8.png";
}

function changer(from,to) {
	if(document.images)
		document.images[from].src = pics[to].src;
}
