// JavaScript Document
function closeMenus() {
		 document.getElementById('RowSites').className = "hide";
		 document.getElementById('RowInformation').className = "hide";
		 document.getElementById('RowCustomerServices').className = "hide";
		 document.getElementById('RowMakes').className = "hide";
		 document.getElementById('RowNetworks').className = "hide";
		 document.getElementById('RowGifts').className = "hide";
		 document.getElementById('RowSimFree').className = "hide";
		 document.getElementById('RowReviews').className = "hide";
		 document.getElementById('RowPayMonthly').className = "hide";
}


function showPayMonthly() {

if(document.getElementById('RowPayMonthly').className == "hide") 
	{
	document.getElementById('RowPayMonthly').className = "show";
	} 
	else {
		 document.getElementById('RowPayMonthly').className = "hide";
	}
}

function showReviews() {

if(document.getElementById('RowReviews').className == "hide") 
	{
	closeMenus();
	document.getElementById('RowReviews').className = "show";
	} 
	else {
		 document.getElementById('RowReviews').className = "hide";
	}
}

function showGifts() {

if(document.getElementById('RowGifts').className == "hide") 
	{
	closeMenus();
	document.getElementById('RowGifts').className = "show";
	} 
	else {
		 document.getElementById('RowGifts').className = "hide";
	}
}

function showNetworks() {

if(document.getElementById('RowNetworks').className == "hide") 
	{
	closeMenus();
	document.getElementById('RowNetworks').className = "show";
	} 
	else {
		 document.getElementById('RowNetworks').className = "hide";
	}
}
function showMakes() {

if(document.getElementById('RowMakes').className == "hide") 
	{
	closeMenus();
	document.getElementById('RowMakes').className = "show";
	} 
	else {
		 document.getElementById('RowMakes').className = "hide";
	}
}


function showSites() {

if(document.getElementById('RowSites').className == "hide") 
	{
	closeMenus();
	document.getElementById('RowSites').className = "show";
	} 
	else {
		 document.getElementById('RowSites').className = "hide";
	}
}
function showInformation() {

if(document.getElementById('RowInformation').className == "hide") 
	{
	closeMenus();
	document.getElementById('RowInformation').className = "show";
	} 
	else {
		 document.getElementById('RowInformation').className = "hide";
	}
}	
	
function showCustomerServices() {

if(document.getElementById('RowCustomerServices').className == "hide") 
	{
	closeMenus();
	document.getElementById('RowCustomerServices').className = "show";
	} 
	else {
		 document.getElementById('RowCustomerServices').className = "hide";
	}
	
	
}

function showSimFree() {

if(document.getElementById('RowSimFree').className == "hide") 
	{
	closeMenus();
	document.getElementById('RowSimFree').className = "show";
	} 
	else {
		 document.getElementById('RowSimFree').className = "hide";
	}
}

