$(document).ready(function(){
	// Para os banners SlideShow
	$('#slider').nivoSlider({
		effect: 'sliceDown',
		pauseTime:5000
	});
	
	// Mostra a imagem ao lado da notícia
	$('.mouseenter').live('mouseenter',function(){
		var linke = $(this).attr('rel');
		$('.noticias_img').html('<img src="'+linke+'" />');
		$('.noticias_txt').removeClass('ativado');
		$(this).parent('.noticias_txt').addClass('ativado');
	});
	
});

