$(document).ready(function()
{
	var selectedPanel=0;	
	function tpMenuInit()
	{
		$(".tpPanels").slideUp("fast");
		//alert("");
	}	
	tpMenuInit();
	//Handle hover
	$(".tpMenuItem").mouseenter(function()
	{
		//Get the position of the clicked element
		// Get the menu index link
		var panelNumber=$(this).index();
		if(panelNumber>0) 
		{
				
			// Get the associated panel
			//var selectedPanel= $(".tpPanels:eq(panelNumber)");
			
			//alert(panelNumber);
			//selectedPanel= $(".tpPanel").eq(panelNumber);
			tpMenuInit();
			$(".tpPanels").eq(panelNumber).slideDown("fast");
		}
		else
		{
			$(".tpMenuItem").click(function()
			{
				window.location.href="http://www.envirohub.org.nz/site";
			});
		}
	});
	
	// Reset Menu
	$("#tpNav").mouseleave(function()
	{
		tpMenuInit();
	});
});

