// JavaScript Document

$(document).ready(function()
{
	// hides all DIVs with the CLASS container
	// and displays the one with the ID only
	$(".container").css("display","none");

// makes the navigation work after all containers have been hidden
	showViaLink($("ul#nav li a"));

});

// shows proper DIV depending on link 'href'
function showViaLink(array)
{
	array.each(function(i)
	{	
		$(this).mouseenter(function()
		{
			var target = $(this).attr("href");
			$(".container-two").css("display","none");
			$(".container").css("display","none");
			$(target).slideDown(400);
		});
	});
}


