$(document).ready(function() {
	if ($.browser.opera) {
		$.support.opacity = true;
	}

	$("img", "#archiveImages").css("opacity", 0.3);

	$("ul.sf-menu").superfish({
		delay: 1000, // one second delay on mouseout
		animation: {opacity: "show", height: "show"}, // fade-in and slide-down animation
		speed: "fast", // faster animation speed
		autoArrows: true, // disable generation of arrow mark-up
		dropShadows: false, // disable drop shadows
		disableHI: false // set to true to disable hoverIntent detection
	});

	$("img", "#archiveImages").hover(function() {
		$(this).stop().animate({ opacity: 1 }, 1);
	},function () {
		$(this).stop().animate({ opacity: 0.3 }, 800);
	});

	$("ul.sf-menu").children(":last").css("background-image", "none");
});
