/* This script allows for the swapping of podcasts without reloading the page */

	function swapPodcast ( type ) {
			document.getElementById( 'podcast-video' ).style.display = "block";
			document.getElementById( 'podcast-video' ).style.backgroundColor = "";
			document.getElementById( 'podcast-video' ).style.color = "#FFFFFF";
			document.getElementById( 'p-video' ).style.backgroundColor = "";
			document.getElementById( 'p-video' ).style.color = "#FFFFFF";
			
			document.getElementById( 'podcast-audio' ).style.display = "none";
			document.getElementById( 'podcast-audio' ).style.backgroundColor = "";
			document.getElementById( 'podcast-audio' ).style.color = "#FFFFFF";
			document.getElementById( 'p-audio' ).style.backgroundColor = "";
			document.getElementById( 'p-audio' ).style.color = "#FFFFFF";
			
			document.getElementById( 'podcast-'+type ).style.display = "block";
			document.getElementById( 'p-'+type ).style.color = "#000000";
			document.getElementById( 'p-'+type ).style.weight = "0";
			document.getElementById( 'p-'+type ).style.backgroundColor = "#FFCC33";
			document.write('p='+type);

		}