$(document).ready(function(){

	
	// Enquete - Abre opções--------------------------------------------------
	$(".get-options", ".enquete").bind("click", function(){
		//alert("ok");
		$(".options", ".enquete").slideDown();
		$(".bot-parcial", ".enquete").show();
		$(this).slideUp();
		return false;
		
	});
	$(".bot-parcial", ".enquete").hide();
	
	
	// desliga div resposta
	$('#enquete .resposta').hide();
	// açoes ao clicar
	$('#enquete .botVotar').click(function(){
		// valida opções
		var nvotos = $("#formenquete input:checked").length;
		
		if(nvotos == 0){
			$('#enquete .resposta').text('Você não escolheu nenhuma opção! \n ');
			$('#enquete .resposta').slideDown('slow');
			// Delay 1 second...
			  $(this).delay(4000,function(){				
				$('#enquete .resposta').slideUp('slow');				
			  });
		}
		return false;
		
	});
	
	// envia ajax	
	$('.enquete .bot-responder').ajaxify({

		target:'.options',		
		link:'cms/ci_itens/sis_enquete.class.php',
		forms:'#formenquete',
		// animação
		animateOut:{opacity:'0'},
		animateOutSpeed:1000,
		animateIn:{opacity:'1'},
		animateInSpeed:1000,
		// onde o loading.. aparece
		loading_target:'.enquete .options',
		loading_img:'cms/cms_itens/img/loading.gif',
		method: "POST" 
	
	});
	
	// mostra resultados	
	$(".bot-parcial", ".enquete").bind("click", function(){												 
		var id = $(this).attr('rel');
		//$(this).slideUp();
		
		
		$(this).ajaxify({
	
			target:'.options',		
			link:'cms/ci_itens/sis_enquete.class.php?parcial='+id,
			//forms:'#formenquete',
			// animação
			animateOut:{opacity:'0'},
			animateOutSpeed:1000,
			animateIn:{opacity:'1'},
			animateInSpeed:1000,
			// onde o loading.. aparece
			loading_target:'.enquete .options',
			loading_img:'cms_itens/img/loading.gif'
		
		});
		return false;
	});
	

});
