$(document).ready(function(){
	$("#navKeys li").hover(function(){
		$("div.bg").remove();
		$(this).children(".firstBG").after("<div class='bg'></div>");
		$("div.bg").fadeIn(500);
		$(this).children("a.bigLink").animate({top: "39px"},500);
		$(this).children("a.nyroModal").slideDown(400);
	}, function(){
		$(this).children("a.nyroModal").slideUp(400);
		$(this).children("a.bigLink").animate({top: "69px"},500);		
		$("div.bg").fadeOut(500, function(){
			$(this).remove();
		});
	});
	$(".nyroModal").nyroModal();
	$("#cInfo, #dInfo").hide();
});
