$(document).ready(function(){
	
	  $("#mmenu li").mouseover(function() {
		$(this).find("ul.submenu").slideDown('fast').show();
		$(this).hover(function() {
  			// nothing to do
  		}, function(){
  			$(this).find("ul.submenu").slideUp('fast');
  		});
    });
	
	$("#headline ul li").hide();
	$("#headline ul li:first").fadeIn("slow");
	$("#headline ul li").click(function() {
		$(this).fadeOut().next().fadeIn("slow");
	});
	$("#headline ul li:last").click(function() {
		$(this).fadeOut();
		$("#headline ul li:first").fadeIn("slow");
	});

   $("#headline .switcher").click(
		function() {
			$("#headline ul li:visible").fadeOut().next().fadeIn("slow");
			if($("#headline ul li:visible").next().text() == '')
				$("#headline ul li:first").fadeIn("slow");
		}
	);
	
});
