$(document).ready(function()
{
	// Hover event for the habitats submenu
	$("#habitats_submenu a").hover(function()
	{
		var rel = $(this).attr("rel");
		$(".habitats .content_container").hide().filter("#"+rel).show();
	},
	function()
	{
	});
	
	// Hover out the submenu
	$("#habitats_submenu").hover(function()
	{
	},
	function()
	{
		$(".habitats .content_container").hide().filter(":not(.hidden)").show();
	});

	// If the link is clicked just do nothing
	$("#habitats_submenu a").click(function()
	{
		return false;
	});
});
