$(function() {
	$('#film').animate({
  opacity: 'show'
	}, 2000);
	$('#film').cycle({ 
    fx:     'fade', 
    speed:  1500, 
    timeout: 6000,
    random: 1
	});
    
    var floaterWidth = $('#floater').width();
    if(floaterWidth != 0) {
        $('#floater').css({'width': floaterWidth, 'margin-left': (0 - floaterWidth / 2)}).show();
        $('a#floater_close').click(function(){ $('#floater').hide()});
    }
});
