	var VoceSabia = new Class({
								  
		initialize:	function(id_div_resposta){
			this.div_id = id_div_resposta;
		},
		
		render:		function ()
		{
			
			div_id = this.div_id;
			
			new Json.Remote("index.php/widgets/voceSabia",
			{	
				onComplete:		function ( resposta )
				{
					
					html				=	'<div id="tit_destaque_lateral_dir2">';
					html				+=	'<div id="campo_tit_lateral_dir"><div id="pos_tit_destaque_interna">Você<br />Sabia?</div></div>';
					html				+=	'</div>';
					
					resposta.conteudo.each(function(obj)
					{
						
						html			+=	'<div id="texto_noticia_rel">';				
							html		+=	'<a href="index.php/vocesabia" class="link_site2">';					
								html	+=	obj.dica;					
							html		+=	'</a>';				
						html			+=	'</div>';
						
					});
	
					$(div_id).setHTML(html);
					
				}
			}).send();
			
		}
		
	});