$(document).ready(function(){
		
	$('.tabbed-nav li a').click(function(){
		var target = $(this).attr('href');
		$(this).addClass('active').parent().siblings().children('a.active').removeClass('active');
		
		$(this).parent().parent().siblings('div').css('display','none');
		$(target).fadeIn(300);
		return false;
	});
	
	$('.featured-movies').innerfade({
		animationtype: 'fade',
		speed: 'slow',
		timeout: '4000',
		type: 'random_start',
		containerheight: '270px'
	});

});




