$( function() {
	// Muda local DOM do rodapé
	$('#wrapper_full').append( $('#rodape div').html() );
	$('#rodape div').remove();
	// Funcção para hover do menu
	$('div#menu ul.menu li a').each( function() {
		if ( $(this).attr('href').toLowerCase() == ( (window.location.search == '') ? window.location.href : window.location.href.split(window.location.search)[0] ).toLowerCase() ) {
			$(this).parent().attr('class', 'item ativo');
		} else {
			$(this).parent().attr('class', 'item');
		}
	});
	// Remover font
	$('font').each(function () {
		$(this).replaceWith($(this).text());
	});
	// Remover bullet
	$('img[src="http://www.clicrbs.com.br/especial/icon/bullet-seta-comum.gif"]').remove();
	if ( ( document.location.href.match('/pr/') ) || ( document.location.href.match('/sc/') ) ) {
		$('#barra-nav .guia_semana').remove();
	}

});
