$(document).ready(function() {
	$("#mainmenu a").hover(function () {
		$(this).dropShadow({left: 1, top: -6, blur: 2, opacity: 1, color: "#FF3333"});
// 		$("h2").each(function() {
// 			$(this).css("color", "red");
// 			$(this).css("display", "block");
// 		})
	}, function () {
		$(this).removeShadow();
	});
	
// 	$("#mainmenu a").dropShadow({left: 3, top: -4, blur: 4, opacity: 1, color: "red"});
// 	$("#mainmenu a").removeShadow();
});

