$(document).ready(
  function(){
		
    $(".itemEvento").mouseover(
      function(){
		
        $(".itemEventoVermelho").addClass('itemEvento').removeClass('itemEventoVermelho');
        $(this).addClass('itemEventoVermelho').removeClass('itemEvento');
		  
      }						   
    );
	
    $(".itemEventoVermelho").mouseover(
      function(){
		
        $(".itemEventoVermelho").addClass('itemEvento').removeClass('itemEventoVermelho');
        $(this).addClass('itemEventoVermelho').removeClass('itemEvento');
		  
      }						   
    );
	
    function onBefore(){ 
      $("#legenda").html('<a href="' + this.id + '">' + this.alt + '</a>'); 
    } 
	
    $("#cycle").cycle({
      prev:   '#prev',
      next:   '#next',
      timeout: 4000,
      pause: 1,
      before:  onBefore
    });
	
    $("#pause").click(
      function(){ 
	  
        $("#cycle").cycle('pause'); 
		
      }
    );


	$(".quadrinho").click(
	  function(){
		
		$(".quadrinho").each(
		  function(){
			  
			var temp = $(this).attr('id').split('-');
		
 	 	    var id = temp[1];
		    var status = temp[2];
			  
			$(this).html('<span class="png"><img src="imgs/layout/quadrinho.png" width="17" height="17" /></span>');
		    $(this).attr('id', 'quadrinho-' + id + '-0');
			  
		  }					 
        );
		
		var temp = $(this).attr('id').split('-');
		
		var id = temp[1];
		var status = temp[2];
		
		if(status == 0){
		  $(this).html('<span class="png"><img src="imgs/layout/quadrinho_assinado.png" width="17" height="17" /></span>');
		  $(this).attr('id', 'quadrinho-' + id + '-1');
		  $("#resposta_enquete").val(id);
	    }
		
	  }
    );
	
	$("#botaoEnquete1").click(
	  function(e){
		
		e.preventDefault();
		
		if($("#resposta_enquete").val() != 0)
		  $("#mEnquete").submit();
		
      }						  
    );


  }				  
);
