function selectmuda( o )
{
//	var bpath = o.selectedIndex != 1 ? (base + '/') : '';
	var bpath = '';
	document.location = bpath + path[o.selectedIndex] + 'rodadas.html';
}

var modalidades = [ 'Torneios Kinuca', 'Taças Quentes Eskanteio', 'Desafios de Equipes', 'Super Master Kinuca' ];
var path = [ 'http://www.desafiando.com.br/torneios/sinuca/', 'http://us3.desafiando.com.br/torneios/eskanteio/', 'http://www.desafiando.com.br/torneios/sinuca_equipes/', 'http://www.desafiando.com.br/torneios/sinuca_masters/' ];

document.write( '<div style="position:absolute; left: 510; top: 145; width: 340px; overflow: hidden" id="membro"><font class=texto_branco>Modalidades:</font>' +
'    <select id="sel_modalidades" onchange="selectmuda(this)" style="font-family: Arial; font-size: 12px">' );

loc = document.location + '';
base = loc.indexOf( '10.10' ) > 0 ? '/sinuca/desafiando_2005' : '';

sel = 0;
for( i = 0 ; i < modalidades.length ; i++ )
{
	if( loc.indexOf( path[i] ) >= 0 ) sel = i;
	document.write( '<option value="' + i + '"' + sel + '>» ' + modalidades[i] + '</option>' );
}
document.write( "</select></div>" );
sel_modalidades.selectedIndex = sel;
