function do_masonry(){ jQuery('#news').masonry({columnWidth: 320}); }


jQuery(function(){
    do_masonry();

    // Side navs
    jQuery("#abre-banda").pageSlide({ width: "360px", direction: "right" });
    jQuery("#abre-disco").pageSlide({ width: "360px", direction: "left" });


    // Title colors
    var czyColors = [
        {param:"color", random:true, duration:10000},
    ];
    jQuery("#site-title").colorBlend(czyColors);


    // Posts nav
    jQuery('#nav a').live('click', function(e){
        e.preventDefault();
        var link = jQuery(this).attr('href');
        jQuery('#news-wrap').html('<span id="loader">Carregando...</span>');
        jQuery('#news-wrap').fadeOut(500).load(link + ' #news', function(){
            do_masonry();
            jQuery('#news-wrap').fadeIn(500);
        });
    });
});
