jQuery(document).ready(function(){
		
	/* Replace "Show Blog" heading (an image to replace it is configured by CSS */
	jQuery("div#inner div.group-c div.mAR_remove").each(function(){
		var span_elem = jQuery("div.h-wrap.group > h2.h-sub2.group > span", this).text();
		if(span_elem != null && span_elem.indexOf("Show Blog") > -1) {
			jQuery(this).addClass("blog_block");
		}
	});
	
	/* Remove bio-popup on RPDR4 */
	jQuery("div.mdl_cast div.title3 a").unbind("mouseover");
	
	/* open cast member links in new window */
	jQuery('div.mdl_cast div.title3 a[href!="#!"]').attr("target", "_blank");
});


