/**
 * @author eduardop
 */



$(document).ready(function() {	
	
	$('div#conteudo div#box_ultimosprojetos div#foto').corner();
	
	$('div#galeria ul li a').lightBox();	
	$('div#mapa a').lightBox();
	
    $('#box_enquete #votar').click(function(){
		
		var id;
		
		$('#box_enquete input:radio').each(function() {
			if ( $(this).is(':checked') ) {
	
		        $.post('enquetes/votar',{
						
					id: $(this).val()
					
					},function(data){
		                $('#box_enquete').empty().html(data);
		            }
		    	);				
			}
		});		
		
    });		
	
	
    $('#box_enquete #ver_resultados').click(function(){
		
        $.post('enquetes/resultados',{
	
			
			},function(data){
                $('#box_enquete').empty().html(data);
            }
    	);	
		
    });			
	
    /*
	$('div#banner ul li img').hover(function(){
		var img = $(this).attr('src').replace('_pb.jpg','.jpg');
		$(this).attr('src',img);
	},function(){
		var img = $(this).attr('src').replace('.jpg','_pb.jpg');
		$(this).attr('src',img);		
	});
	*/
	
	// Monta a lista com as estrelas
	$('div.texto_com_imagem img').each(function() {
		var src_img = $(this).attr('src');	
		$(this).attr('src',src_img.replace('../../','/adm/'));
	});			
	
});				
	

