$(document).ready(function() {
	/* menu */
	$("ul#mainmenu>li").each(function() {
		$(this).hover(function() {
			$(this).children('ul').show();
			$(this).children('a').css('z-index','1100');
		},function() {
			$(this).children('ul').hide();
			$(this).children('a').css('z-index','900');
		});
	});
	// shadow images
	var ua = $.browser;
	$("img.shadowed").each(function() {
		$(this).parent().css('position','relative');
		var span = document.createElement("span");
		$(span).addClass('shadowed');
		$(this).parent().append(span);
		if (ua.msie && ua.version.slice(0,3) == "7.0") {
			$(span).css('top','0px');
		}
	});
});

