onload=function(){
//Menus topo
	var links = document.getElementById('menus').getElementsByTagName('a'), a, l, i=0;
	var thisUrl=location.href;
	
	while(a=links[i++]){
		
	l=a.href.split('/')[a.href.split('/').length-1];
	atual=location.href.split('/')[a.href.split('/').length-1];
	
	if(atual == l){
		a.getElementsByTagName('span')[0].className='active';
	}else
		a.getElementsByTagName('span')[0].className='';
	}

}

