$(document).ready(function() {
	$("#navArchetype ul").css({display: "none"});
	$("#navArchetype li").hover(function(){
	$(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn(350);
	},function(){
	$(this).find('ul:first').fadeOut(150);
	})
});
