
$(document).ready(function(){

  // Inicializacion del Carousel
  jQuery('#mycarousel').jcarousel();

  // Inicializacion para los ultimos comentarios y nota pie
  var first = 0;
  var speed = 1500;
  var pause = 8000;

  function removeFirstUC(){
    first = $('ul#ultimos_comentarios li:first').html();
    $('ul#ultimos_comentarios li:first')
    .animate({
      opacity: 0
    }, speed)
    .fadeOut('slow', function() {
      $(this).remove();
    });
    addLastUC(first);
  }

  function addLastUC(first){
    last = '<li style="display:none">'+first+'</li>';
    $('ul#ultimos_comentarios').append(last)
    $('ul#ultimos_comentarios li:last')
    .animate({
      opacity: 1
    }, speed)
    .fadeIn('slow')
  }
	
  // ----------------------------
  function removeFirstNP(){
    first = $('ul#nota_pie li:first').html();
    $('ul#nota_pie li:first')
    .animate({
      opacity: 0
    }, speed)
    .fadeOut('slow', function() {
      $(this).remove();
    });
    addLastNP(first);
  }

  function addLastNP(first){
    last = '<li style="display:none">'+first+'</li>';
    $('ul#nota_pie').append(last)
    $('ul#nota_pie li:last')
    .animate({
      opacity: 1
    }, speed)
    .fadeIn('slow')
  }

  interval = setInterval(removeFirstUC, pause);
  interval = setInterval(removeFirstNP, pause);
});

$(document).ready(function () {
    $('img.menu_class').click(function () {
	$('ul.the_menu').slideToggle('medium');
    });
});
