$(document).ready(function() { 
	$("#nav li ul").css({display: "none"}); // Opera Fix 
	$("#nav ul li").hover(function(){ 
        $(this).find('ul:first').slideDown(400); 
        },function(){ 
       $(this).find('ul:first').fadeOut(400); 
        });
   	$(".staticscroll").scrollable({circular: true, speed: 600});
   	/* $(".autoscroll").scrollable({circular: true, speed: 600}).autoscroll(18000); */
   	$(".autoscroll").scrollable();
});
