$(document).ready(function(){

	$('.noticia a .texto').each(function(i) {
		var h = $('.noticia a .texto').eq(i).height();			
		if(h==32){
			$('.noticia a .bt_vermais').eq(i).hide();
		}else if(h<32){
			$('.noticia a .texto').eq(i).css('height','auto');
			$('.noticia a .bt_vermais').eq(i).hide();
		}else{
			$('.noticia a .texto').eq(i).css('height','32px');	
			$('.noticia a .bt_vermais').eq(i).show();	
		}
	});	
		
	$('.noticia a .bt_vermais').click(function() {
		var index = $('.noticia a .bt_vermais').index(this);
		var h = $('.noticia a .texto').eq(index).height();
		
		if(h==32){
			$('.noticia a .texto').css('height','32px');
			$('.noticia a .texto').eq(index).css('height','auto');
			$('.noticia a .bt_vermais').text('Ver mais [+]');	
			$('.noticia a .bt_vermais').eq(index).text('Fechar [-]');
		}
		if(h>32){
			$('.noticia a .texto').css('height','32px');	
			$('.noticia a .bt_vermais').eq(index).text('Ver mais [+]');			
		}
	});
});
