var thumbs,current_video_title,current_video_description,defaultVideoTitle,defaultVideoDescription;
function cantaHandleOnClick(a){if(a.rel=="active"){return true}return false}
function cantaHandleMouseOver(a){
	//alert(a.className);
	var b=a.title.split("|");
	var c=b[0];var d=b[1];
	if(/cantaloupe-active/.test(a.className))
	{
		current_video_title.innerHTML=c;current_video_description.innerHTML=d}
		else{current_video_title.innerHTML="Video Coming Soon...";current_video_description.innerHTML=""}return false}

function cantaHandleMouseOut(a){current_video_title.innerHTML=defaultVideoTitle;current_video_description.innerHTML=defaultVideoDescription;return false}

function wireEvents(){current_video_title=document.getElementById("episode_info_heading");current_video_description=document.getElementById("episode_info_description");defaultVideoTitle=current_video_title.innerHTML;defaultVideoDescription=current_video_description.innerHTML}