// JavaScript Document


function MenuItemClick(varClickName)
{

	if(varClickName == 'home'){
		window.location="http://newenergyathletics.com/index.php";
	}
	
	if(varClickName == 'aboutus'){
		window.location="http://newenergyathletics.com/AboutUs.php";
	}

	if(varClickName == 'services'){
		window.location="http://newenergyathletics.com/Services.php";
	}

	if(varClickName == 'heaslipnation'){
		window.location="http://newenergyathletics.com/neanews.php";
	}

	if(varClickName == 'clientsinaction'){
		window.location="http://newenergyathletics.com/ClientsInAction.php";
	}

	if(varClickName == 'testimonials'){
		window.location="http://newenergyathletics.com/Testimonials.php";
	}

	if(varClickName == 'locations'){
		window.location="http://newenergyathletics.com/Locations.php";
	}

	if(varClickName == 'contactus'){
		window.location="http://newenergyathletics.com/ContactUs.php";
	}

	if(varClickName == 'crosstrain'){
		window.location="http://newenergyathletics.com/newenergycrosstrain.php";
	}


}