$(document).ready(function() {
		$('#carousel').cycle({
			fx:     'uncover',
			speed:  'slow',
			timeout: 3000,
			slideExpr: 'img',
    after:   function() {
        var title = $(this).attr('alt');
        $('#caption').html(title);
    }

		});

		$('#carousel2').cycle({
			fx:     'scrollLeft',
			speed:  'slow',
			timeout: 5000,
			slideExpr: 'p'
		});

});

$(document).ready(function() {  

	$('.film-detail ul').addClass('narrow');
	$('.film-detail ul.narrow li:odd').addClass('fd_odd');  
	$('.film-detail ul.narrow li:even').addClass('fd_even');  
	$('.film-detail ul+ul').removeClass('narrow');
	$('.film-detail ul+ul').addClass('wide');
	$('.film-detail ul+ul li:odd').addClass('fd_odd');
	$('.film-detail ul+ul li:even').addClass('fd_even');
	$('.film-detail ul').after('<div class="clear"></div>');
  
}); 

