$(document).ready(function(){
    $('#banner').cycle({ 
        fx:    'fade', 
        timeout: 4000,
	    delay: 1000,
	    pause:   1
    });

    var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).not('div[id^=fancybox]').css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});

   $('.box').each(function(idx, el){
	if($.trim($(el).html()).length == 0){
	  $(el).remove();
        }   
   });

    $('.trailer').media({ width: 650, height: 340, autoplay: true });

    $('.movie a.title').tooltip({ 
        position: "bottom right",
        offset: [-146, -175],
        delay: 200
    });

    if($('a[rel^=group]').length > 0){
        $('a[rel^=group]').fancybox({ titleShow: false, cyclic: true });
    }

});

$(window).load(function() {
    $('#content').masonry({ columnWidth: '100' });
}).resize(function() {
	$('#content').masonry({ columnWidth: '100' });
});



