jQuery(document).ready(function(){
            
	     jQuery('#filmstrip').stop().delay(3500).animate({backgroundPosition:"(-3840px 0)"}, 50000);
		
         jQuery("#frontpicalt").hover(
            function() {
               jQuery(this).stop().animate({"opacity": "1"}, 1200);
            },
            function() {
               jQuery(this).stop().animate({"opacity": "0"}, 1200);
            }
         );
         
         jQuery("#frontpicaltes").hover(
            function() {
               jQuery(this).stop().animate({"opacity": "1"}, 1200);
            },
            function() {
               jQuery(this).stop().animate({"opacity": "0"}, 1200);
            }
         );

});

