// JavaScript Document
// ** ABOUT PERF menu
////////////////////////////////
function callAboutPerf(str)
{
	switch(str)
	{
		case 'a':
				document.location.href  = "./about-us.html";
				break;
		case 'b':
				document.location.href  = "./our-team.html";
				break;
		case 'c':
				document.location.href  = "./areas-of-impact.html";
				break;
		case 'd':
				document.location.href  = "./our-commitment.html";
				break;
		default:
				alert("Problem in About Perf Menu");			
	}
}


// ** GREEN REVOLUTION menu
////////////////////////////////
function callRevolution(str)
{
	switch(str)
	{
		case 'a':
				document.location.href  = "./environment.html";
				break;
		case 'b':
				document.location.href  = "./who-is-involved.html";
				break;
		case 'c':
				document.location.href  = "./how-to-get-involved.html";
				break;
		case 'd':
				document.location.href  = "./take-a-stand.html";
				break;
		case 'e':
				document.location.href  = "./a-brighter-future.html";
				break;
		default:
				alert("Problem in Green Revolution Menu");			
	}
}


// **  OUR PRODUCTS menu
////////////////////////////////
function callProducts(str)
{
	switch(str)
	{
		case 'a':
				document.location.href  = "./products.html";
				break;
		case 'b':
				document.location.href  = "./product-overview.html";
				break;
		case 'c':
				document.location.href  = "./new-products.html";
				break;
		case 'd':
				document.location.href  = "./purchase-products.html";
				break;
		default:
				alert("Problem in Our Product");			
	}
}


// **  Media & News menu
////////////////////////////////
function callNews(str)
{
	switch(str)
	{
		case 'a':
				document.location.href  = "./media.php";
				break;
		case 'b':
				document.location.href  = "./news.html";
				break;
		case 'c':
				document.location.href  = "./articles.html";
				break;
		case 'd':
				document.location.href  = "./awards.html";
				break;
		case 'e':
				document.location.href  = "./medinqu.html";
				break;
		default:
				alert("Problem in Media & News Menu");			
	}
}


// **  READY TO GO GREEN menu
////////////////////////////////
function callGogreen(str)
{
	switch(str)
	{
		case 'a':
				document.location.href  = "./go-green.html";
				break;
		case 'b':
				document.location.href  = "./why-go-green.html";
				break;
		case 'c':
				document.location.href  = "./green-living-ideas.html";
				break;
		case 'd':
				document.location.href  = "./the-future-of-green.html";
				break;
		default:
				alert("Problem in Go Green Menu");			
	}
}


// **  BUY PERF , INVESTORS , RETAIL PARTNER , 21.0 FOUNDATION menu
////////////////////////////////
function callOtherMenus(str)
{
	switch(str)
	{ 
	    case 'a':
				document.location.href  = "./Buy-perf.html";
				break;
		case 'b':
				document.location.href  = "./investors.php";
				break;
		case 'c':
				document.location.href  = "./retailers/index.php";
				break;
		case 'd':
				document.location.href  = "./foundation/index.html";
				break;
		default:
				alert("Problem in Other Menu");			
	}
}