<!--

	function LoadImage(name,pos)
	{
		var img = new Image();
		if (pos==0){
			img.src = '/images/botoes/'+name+'_out.gif';
		}else{
			img.src = '/images/botoes/'+name+'_in.gif';
		}
		return img;
	}
	
	function botao_in(img) {
		img.src=eval(img.name+'_in.src')
	}

	function botao_out(img) {
		img.src=eval(img.name+'_out.src')
	}
	
//-->

