$(document).ready(function(){
						   
flashembed( "top-flash", {src: 'flash/911-animation.swf', wmode: 'transparent'} );

$('.fadein img:gt(0)').hide();
setInterval(function(){$('.fadein :first-child').fadeOut(1000).next('img').fadeIn(1000).end().appendTo('.fadein');}, 3000);

	$("#top-nav li:has(ul)").addClass("root").find("li").addClass("sub");
	
	$("#top-nav li.root").hover(function () {
		$(this).children('ul:hidden').slideDown(300); 
	
	},function(){
			$(this).children('ul:visible').slideUp(300);
    });

});
