 $(document).ready(function(){  
	$("#nocitita").show(); 
	$("#formula").hide();	
	$("#citita").hide();
    $("#contesta").hide();
    $("#equis").click(function () {
      $("#cuerpo").toggle();
    });
 
  if(getCookie('show_message')!='no')
  {
      var pos=parseInt($(window).scrollTop())+parseInt($(window).height());
      $('#recuerdoLogin').css("top",pos-140+"px");
      $('#recuerdoLogin').show();  

	  $(window).scroll(function()
	  {
  	     var pos=parseInt($(window).scrollTop())+parseInt($(window).height());
        $('#recuerdoLogin').animate({top:pos-140+"px" },{queue: false, duration: 500});  
	  });  
	  
	  $(window).resize(function()
	  {
  	     var pos=parseInt($(window).scrollTop())+parseInt($(window).height());
        $('#recuerdoLogin').animate({top:pos-140+"px" },{queue: false, duration: 500});  
	  }); 	  
    }
	

	$('#close_message').click(function()
	{
		var pos=parseInt($(window).scrollTop())+parseInt($(window).height());
		$('#recuerdoLogin').animate({ top:pos-180+"px",opacity:0 }, "slow");
        setCookie('show_message','no',1); 
	});
	
	//De momento no usamos ShoutBox
	//initSB();
  });

