$(document).ready(function(){
    $("#banner_parceiros").jcarousel({
      animation: 2000,
      auto: 0.0001,
      easing: 'linear',
      scroll: 1,
      wrap: 'circular'
    });

    $('#fotos_pages').jcarousel({scroll:1});
    $('#videos_pages').jcarousel({scroll:1});
    $('input[placeholder], textarea[placeholder]').enablePlaceholder();
    $("a[class='colorbox']").colorbox();
    $("a[class='associado_miniatura']").colorbox();

    var $associated = $("#associated");
    var $article = $associated.find("article");

    $article.each(function(){
      var $this = $(this);
      $this.find("h1").find("a").click(function(e){
        $this.find(".content").fadeIn().end().siblings().find(".content").hide();
        e.preventDefault();
      });
    });

    $('.galeria_miniatura').bind("click", function() {
        $("#galeria_grande").attr("src", this.href);
        $('#legenda').html($(this).attr('alt'));
        return false;
    });

});

