$(document).ready(function(){
// Load each Channel into buckets
    $(".fragment").each(function () {
        $(this).empty().html('<img src="/images/loading.gif" style="margin: 0 auto;" />');
        $(this).load('/fragment/'+$(this).attr('id')+'/');
    });
// Mouseover custom titles    
    $('.fragment a,').live('mouseenter', function() {
        $('.fragment a').tooltip({ position: "center right", opacity: 0.99});
    });
// Youtube Colorbox 
    $('a.youtube').colorbox({iframe:true, innerWidth:425, innerHeight:344});
});

