// JavaScript Document
function imgOver(n){
    document.getElementById('dest'+ n).style.background = 'url(/pt_BR/browser/static/images/tit_dest'+ n +'.jpg) no-repeat';
	document.getElementById('link'+ n).style.color = '#b4b4b4';
	}
function imgOut(n){
	document.getElementById('dest'+ n).style.background = 'url(/pt_BR/browser/static/images/tit_dest'+ n +'_off.jpg) no-repeat';
	document.getElementById('link'+ n).style.color = '#363636';
	}