$(function(){
	npframe = document.createElement("iframe");
	npframe.src = NOWPLAYING_IFRAME_URL;
	$npframe = $(npframe);
	// frameBorder <- camel casing mandatory for Internet Explorer
	$npframe.attr( {scrolling: "no", marginWidth: "0", marginHeight:"0", frameBorder:"0", border:"0", allowtransparency: "true", align: "center"} );
	$npframe.width("100%");
	$npframe.height(25);
	$npframe.css({width:"100%",height:"25px"});
	$("#bds-np").append(npframe);
});
