window.addEvent('domready', function() {
    // look for and init videos
	var vids = $('layout').getElements('[rel=video]');
	if (vids.length > 0) {
		var vidInfo, id;
		vids.each(function (itm, i, a) {
			id = itm.get('id');
			vidInfo = getVideoData(id);
			insertVideo(id, vidInfo.flv, vidInfo.width, vidInfo.height);
		});
	}
});

// inserts video
function insertVideo(id, flv, width, height) {
	var flashVars = {flv:flv};
	var flashParams = {wmode:"transparent"};
	var flashAttributes = {name: id, id: id};
	swfobject.embedSWF(rootURL + "/swf/simpleVideoPlayer.swf", id, width, height+30, "10.0.0", "", flashVars, flashParams, flashAttributes);
}

// returns object with data for all videos
function getVideoData(id) {
	if (id.contains('rr')) {
		return {flv:"../video/rr/"+id+".flv", width:464, height:291};
	}
	return {}
}