$(document).ready(function(){
	for(var i = 0; i < 6; i++) {
		$('a#playPodcast' + i).click(function() {
			var podcastID = $(this).attr('podcastID');
			var jockID = $(this).attr('jockID');			
			$('#podcastPlayer').html('<iframe id="podcastIframe" name="podcastIframe" height="auto" src="/v_podcast.php?pid='+ podcastID +'&jid='+ jockID +'" frameborder="0"></iframe>');
			return false;
   		});
	}
});

