function navigation() {
	var entered = false;
	
	$("#reels").css({"display":"block"});

	$(".map").each( function() {
		var id = $(this).attr("name");
		$(this).mouseenter( function () {
				this.entered = true;
				var aniOn = "";
				$(id).each(function() { aniOn = this.aniOn; });		
				if (id == "#bl") {
					$("#slideshow").animate({
						"bottom":"-=1px",
						"left":"-=5px",
					}, 100, "linear");
				}
				$(id).animate(aniOn, 100, "linear"); /* function() {
					if (id == "#br") {
						$("#reels").css({"display":"block"});
					} 
				}); */
				
		}).mouseleave( function() {
			if (this.entered == true) {
				var aniOff = "";
				if (id == "#bl") {
					$("#slideshow").animate({
						"bottom":"+=1px",
						"left":"+=5px",
					}, 100, "linear");
				}
				$(id).each(function() { aniOff = this.aniOff; });
			/*	if (id == "#br") {
					$("#reels").css({"display":"none"});
				} */
				$(id).animate(aniOff, 100, "linear", function() {
					this.entered = false;
				});
			}
		});
	});
}
