function swapVideo(channel) {
	sv = new FlashObject("http://downloads.canoe.com.edgesuite.net/feedroom/canoe/canoe.swf", "ca", "164", "228", "8", "#ffffff");
	sv.addVariable("skin", "embed");
	sv.addVariable("s", "canoe");
	sv.addVariable("fr_chl", channel);
	sv.addParam("quality", "high");
	sv.addParam("salign", "t");
	sv.addParam("wmode", "transparent");
	sv.write("videoPlayer");
}

//Video binds
	$("#vidTabs a").bind("click", function(){
		swapVideo($(this).attr("rel"));
		$("#vidTabs .activeTab").removeClass("activeTab");
		$(this).parent().addClass("activeTab");
		return false;
	});
	
	
	
