
/**
 * Load the personality content and 
 * process scheduled content.
 */
$(function(){ $('.schedule').schedule(); });

/**
 * Add NowPlaying to the page
 */
var np_station = "ckis";
var np_targetid = 'np-song-info';
$(function(){
	$.getScript("http://nowplaying.rogersradiointernet.com/public/widgets/nowplaying.json.js");
});

$(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);
});