jQuery(document).ready(function(){	/*Cufon.replace('#nav li a',	{ fontFamily: 'Futuranormal'  });	*/		/*	jQuery('#mycarousel').jcarousel({        vertical: true,         auto: 4,         scroll: 1    });    */    $('#nav li').hover(		function(){ $(this).find('.sub-nav').show(); $(this).find('a:eq(0)').addClass('active'); },		function(){ $(this).find('.sub-nav').hide(); $(this).find('a:eq(0)').removeClass('active'); }			);		var visible = 9;	var i=0;	$('.filmstrip li').each(function(){		if( i == 10 ) return false;				$('.filmstrip ul').append( $(this).clone() );				i++;	});		_animate();});var direction;function _animate( direct ) {	var ul_top = parseInt($('.filmstrip ul').css('top'));	var top = -1 * ($('.filmstrip ul').height()-85) + 'px';		direction = ul_top == 0 ? 'top' : 'bottom';		if( typeof(direct) != 'undefined' ) {		direction = direct;	}		var speed = 0;		$('.filmstrip ul').animate(		{ 'top' : top }, 		speed, 		'linear',		function(){			$('.filmstrip ul').css({ 'top' : '-0px' });			_animate();		}	);}
