var player;
function playerReady(obj) {
	alert('the videoplayer '+obj['id']+' has been instantiated');
	player = document.getElementById(obj['id']);
};


function init() {
	
	var flvVars = {
	     	width: 604,
	     	height: 362,
	        file: "/rotator",
	        enablejs: "true",
	        javascriptid: "movie1",
	        linkfromdisplay: "true"
	       // image: video.Thumbnail,
	       // file: video.Url,
	      //  title: video.Title,
	        //backcolor: "0x000000",
	        //frontcolor: "0xffba00"
	        };
	var flvParams = {
	        allowscriptaccess: "always",
	        allowfullscreen: "false",
	        hideMenu: "true",
	        wmode: "transparent"};
	var attrib = { id: "imagerotator", name: "imagerotator" };
	var vidObject = swfobject.embedSWF('/public/shared/swf/imagerotator.swf', "theRotator", 604, 362, "9.0.115", "/public/shared/swf/expressInstall.swf", flvVars, flvParams, attrib);
}



