$(document).ready(function(){

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


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

});
