currentPlayer = false;

$(document).ready(function(){
	// add interactivity to podcasts
	$(".items").addClass("int");
	$(".podcast h2").addClass("clicky").click(function(){
		$(this).parent().toggleClass("clicked");
		if($(this).parent().hasClass("clicked")) {
			$(this).parent().children(".items").show();
		} else {
			$(this).parent().children(".items").hide();
		}
	});


	v = deconcept.SWFObjectUtil.getPlayerVersion();
	if(v.major >= 8) {
		$(".playerDesc").html("Listen to Podcast");
	}
});