function SwitchList(lst)
	{
		switch(lst)
		{
				case 1:
				if (document.getElementById("new_tracks_alb")!=null)
					document.getElementById("new_tracks_alb").style.display="none";	
				if (document.getElementById("ownalbs")!=null)
					document.getElementById("ownalbs").style.display="inline";
				if (document.getElementById("mixalbs")!=null)
					document.getElementById("mixalbs").style.display="none";
				if (document.getElementById("othalbs")!=null)
					document.getElementById("othalbs").style.display="none";
				
				if (document.getElementById("aswtch")!=null)
					document.getElementById("aswtch").className = 'active';
				if (document.getElementById("cswtch")!=null)
					document.getElementById("cswtch").className = 'inactive';
				if (document.getElementById("oswtch")!=null)
					document.getElementById("oswtch").className = 'inactive';
				if (document.getElementById("ntswtch")!=null)
					document.getElementById("ntswtch").className = 'inactive';
				
				break;
			case 2:
				if (document.getElementById("new_tracks_alb")!=null)
					document.getElementById("new_tracks_alb").style.display="none";	
				if (document.getElementById("ownalbs")!=null)
					document.getElementById("ownalbs").style.display="none";
				if (document.getElementById("mixalbs")!=null)
					document.getElementById("mixalbs").style.display="inline";
				if (document.getElementById("othalbs")!=null)
					document.getElementById("othalbs").style.display="none";
				
				if (document.getElementById("aswtch")!=null)
					document.getElementById("aswtch").className = 'inactive';
				if (document.getElementById("cswtch")!=null)
					document.getElementById("cswtch").className = 'active';
				if (document.getElementById("oswtch")!=null)
					document.getElementById("oswtch").className = 'inactive';
				if (document.getElementById("ntswtch")!=null)
					document.getElementById("ntswtch").className = 'inactive';
				break;
			case 3:
				if (document.getElementById("albsS")!=null)
					document.getElementById("albsS").style.display="inline";	
				if (document.getElementById("albsB")!=null)
					document.getElementById("albsB").style.display="none";
				if (document.getElementById("albsA")!=null)
					document.getElementById("albsA").style.display="none";
				if (document.getElementById("albsK")!=null)
					document.getElementById("albsK").style.display="none";
					
				if (document.getElementById("swtchS")!=null)
					document.getElementById("swtchS").className = 'active';
				if (document.getElementById("swtchB")!=null)
					document.getElementById("swtchB").className = 'inactive';
				if (document.getElementById("swtchA")!=null)
					document.getElementById("swtchA").className = 'inactive';
				if (document.getElementById("swtchK")!=null)
					document.getElementById("swtchK").className = 'inactive';
				break;
			case 4:
				if (document.getElementById("albsS")!=null)
					document.getElementById("albsS").style.display="none";	
				if (document.getElementById("albsB")!=null)
					document.getElementById("albsB").style.display="inline";
				if (document.getElementById("albsA")!=null)
					document.getElementById("albsA").style.display="none";
				if (document.getElementById("albsK")!=null)
					document.getElementById("albsK").style.display="none";
					
				if (document.getElementById("swtchS")!=null)
					document.getElementById("swtchS").className = 'inactive';
				if (document.getElementById("swtchB")!=null)
					document.getElementById("swtchB").className = 'active';
				if (document.getElementById("swtchA")!=null)
					document.getElementById("swtchA").className = 'inactive';
				if (document.getElementById("swtchK")!=null)
					document.getElementById("swtchK").className = 'inactive';
				break;
			case 5:
				if (document.getElementById("albsS")!=null)
					document.getElementById("albsS").style.display="none";	
				if (document.getElementById("albsB")!=null)
					document.getElementById("albsB").style.display="none";
				if (document.getElementById("albsA")!=null)
					document.getElementById("albsA").style.display="inline";
				if (document.getElementById("albsK")!=null)
					document.getElementById("albsK").style.display="none";
					
				if (document.getElementById("swtchS")!=null)
					document.getElementById("swtchS").className = 'inactive';
				if (document.getElementById("swtchB")!=null)
					document.getElementById("swtchB").className = 'inactive';
				if (document.getElementById("swtchA")!=null)
					document.getElementById("swtchA").className = 'active';
				if (document.getElementById("swtchK")!=null)
					document.getElementById("swtchK").className = 'inactive';
				break;
			case 6:
				if (document.getElementById("albsS")!=null)
					document.getElementById("albsS").style.display="none";	
				if (document.getElementById("albsB")!=null)
					document.getElementById("albsB").style.display="none";
				if (document.getElementById("albsA")!=null)
					document.getElementById("albsA").style.display="none";
				if (document.getElementById("albsK")!=null)
					document.getElementById("albsK").style.display="inline";
					
				if (document.getElementById("swtchS")!=null)
					document.getElementById("swtchS").className = 'inactive';
				if (document.getElementById("swtchB")!=null)
					document.getElementById("swtchB").className = 'inactive';
				if (document.getElementById("swtchA")!=null)
					document.getElementById("swtchA").className = 'inactive';
				if (document.getElementById("swtchK")!=null)
					document.getElementById("swtchK").className = 'active';
				break;
		}
	}
