$(document).ready(function() {
	with (unFocus.Flash) {
		// output the movie, and hide the other content
		if (Player.getVersion() >= 6) {
			// set up html object
			var $HTML = new SwfHTML();
			$HTML.setSrc('/_'+'images/h1.swf');
			$HTML.setWidth('100%');
			$HTML.setHeight(44);
			$HTML.setMenu(false);
			$HTML.setQuality('best');
			$HTML.setScale('noscale');
			$HTML.setBGColor('#FFFFEF');
		
			$('h1').each(function() {
				$HTML.addFlashvar('irText',this.innerHTML);
				$HTML.outputToInnerHTML(this);
			});
			
			// recycle html object
			$HTML.setSrc('/_'+'images/h3.swf');
			$HTML.setHeight(30);
			$HTML.setFlashvars("");
			
			$('.streams h3').each(function() {
				$HTML.addFlashvar('irText',this.innerHTML);
				$HTML.outputToInnerHTML(this);
			});
		}
	}
});
