function loadimg(id)
{
    x = id;   
    var div_load = document.getElementById('div_loader');		
	div_load.innerHTML = "<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='center' valign='top' style='padding-top:100px'><img alt='' width='18px' height='18px' src='Images/Indicator.gif' /></td></tr></table>";
	
	var name_project = document.getElementById('name_project_recent');
	name_project.innerHTML = "";
	
	t=setTimeout("change_img('"+x+"')",500);
}
function change_img(id)
{
    var div_load = document.getElementById('div_loader');		
	div_load.innerHTML = "";
	
	var name_project = document.getElementById('name_project_recent');
	
	var id_label = document.getElementById(id);		
				
	var listID = new Array();
	listID[0] = document.getElementById('thongnhat');	
	listID[1] = document.getElementById('tudo');	
	listID[2] = document.getElementById('nhon');
		
	listID[3] = document.getElementById('quynhon');
	listID[4] = document.getElementById('bauthanh');	
	listID[5] = document.getElementById('thientruong');
		
	listID[6] = document.getElementById('nguyentriphuong');	
	listID[7] = document.getElementById('dongthap');
	listID[8] = document.getElementById('dongnai');
		
	listID[9] = document.getElementById('danang');	
	listID[10] = document.getElementById('hue_soccer');	
	listID[11] = document.getElementById('hue_sport');
	
	listID[12] = document.getElementById('rachmieu');				
	
	var big_img = new Array();
	big_img[0] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/thongnhat.jpg' />";
	
	big_img[1] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/tudo.jpg' />";
	
	big_img[2] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/nhon.jpg' />";
	
	big_img[3] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/quynhon.jpg' />";
	
	big_img[4] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/bauthanh.jpg' />";
	
	big_img[5] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/thientruong.jpg' />";
	
	big_img[6] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/nguyentriphuong.gif' />";
	
	big_img[7] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/dongthap.gif' />";
	
	big_img[8] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/dongnai.gif' />";
	
	big_img[9] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/danang.jpg' />";
	
	big_img[10] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/hue_soccer.gif' />";
	
	big_img[11] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/hue_sport.jpg' />";
	
	big_img[12] = "<img alt='' width='382px' height='284px' src='Images/contentIm/recent/rachmieu.jpg' />";
	
	var project = new Array();
	project[0] = "Thong Nhat Stadium, HCMC";
	
	project[1] = "Tu Do Stadium, Hue City";
	
	project[2] = "Nhon National Stadium I, Hanoi";
	
	project[3] = "Quy Nhon Stadium";
	
	project[4] = "Bau Thanh Stadium";
	
	project[5] = "Thien Truong Stadium, Nam Dinh";
	
	project[6] = "Nguyen Tri Phuong Indoor Sport House";
	
	project[7] = "Dong Thap Indoor Sport House";
	
	project[8] = "Dong Nai Indoor Sport House";
	
	project[9] = "Da Nang Sport Tournament Center";
	
	project[10] = "Hue Soccer Stadium ";
	
	project[11] = "Hue Indoor Sport House";
	
	project[12] = "Rach Mieu Indoor Sport House";		
	
	for(var i = 0; i  <= 12; i++)
	{
	    listID[i].style.color = "#D4D4D4";	
		if(listID[i]==id_label)	
		{
			div_load.innerHTML = big_img[i];
			name_project.innerHTML = project[i];
			listID[i].style.color = "#7B9B16";			
		}
		
	}

}

