function preLoad()
{
	var img1 = "";
	var img2 = "";
	var img3 = "";
	var img4 = "";
	var img5 = "";
	var img6 = "";
		
	img1= new Image(160,25); 
	img1.src="/images/flags/flag_afr.png"; 
	img2= new Image(160,25); 
	img2.src="/images/flags/flag_arg.png"; 
	img3= new Image(160,25); 
	img3.src="/images/flags/flag_aus.png"; 
	img4= new Image(160,25); 
	img4.src="/images/flags/flag_nc.png"; 
	img5= new Image(160,25);
	img5.src = "/images/flags/flag_nz.png";
	img6 = new Image(160, 25);
    img6.src= "/images/flags/flag_nep.png"
}

function menuExpand(idx,type)
{
	var e = document.getElementById('menu_'+idx);
	
	if (e.style.visibility == 'visible') {
		e.style.visibility = 'hidden';
		e.style.display = 'none';
		document.getElementById('menu_link_'+idx).innerHTML = "<img src=\"/images/arrow_down.png\" width=\"9\" height=\"9\" border=\"0\" alt=\"Click to expand the "+type+" list\" />"+type;
	} else {
		e.style.visibility = 'visible';
		e.style.display = 'block';
		document.getElementById('menu_link_'+idx).innerHTML = "<img src=\"/images/arrow_up.png\" width=\"9\" height=\"9\" border=\"0\" alt=\"Click to collapse the "+type+" list\" />"+type;
	}
}

function locationBg(country,idx)
{

	document.getElementById('loc_'+country+'_'+idx).style.background='url(/images/flags/flag_'+country+'.png)';  
}

function locationBg2(country,idx)
{
	document.getElementById('loc_'+country+'_'+idx).style.background = "";
}
