$(function() {
var how_many = $('#slides').children().length;
var the_block_width = how_many*271;
$('div.blocks').width(the_block_width);
    $('#slides').cycle({
        timeout: 0,
        delay: 500,
        speed: 500,
        pager:'#nav',
        next:   '#next',
    prev:   '#prev',
    pagerAnchorBuilder: function(idx, slide) { 
        return '<a href="#"><img src="' + slide.src + '" width="271" height="150" /></a>'; 
    } 
    });
	$('#nav a').hover(function(){
		$(this).find('img').animate({opacity:0.7},{queue:false,duration:200});
	}, function(){
		$(this).find('img').animate({opacity:1},{queue:false,duration:200});
	});
$('#scroll-pane').jScrollHorizontalPane({dragMaxWidth:84});
$("#movie").toggle(
	function () {
		$("div.dropshadow,div.holder-shadow,div.lead-content,p,div.flash-window").addClass('flash');
	},
	function () {
		$("div.dropshadow,div.holder-shadow,div.lead-content,p,div.flash-window").removeClass('flash');
	}
);
$("#footer li:last-child").css({background:"none"});
});
