// JavaScript Document

$(function(){
	$("#menu li.topitem").hover(
		function(){
			$(this).find("ul").show();
			$(this).find("a.level1").css('text-decoration', 'underline');
		},
		function() {
			$(this).find("ul").hide();
			$(this).find("a.level1").css('text-decoration', 'none');
			
		}
	)
});

//$(function(){
	//$("a").click (
		//function(){
			//alert("More pages coming soon!");	
	//	}
	//)
//});
