if (typeof FLVPlayer == 'undefined') var FLVPlayer = new Object();

FLVPlayer.movieDomain = 'http://' + location.href.split('/')[2] + '/';
/*FLVPlayer.movieDomain = 'http://media.wii.com/';*/

FLVPlayer.embed = function (id, flv, w, h) {
	if (typeof w == 'undefined') w = 320;
	if (typeof h == 'undefined') h = 240;
	
	var	flvfile = this.movieDomain + location.href.split('/')[3] + '/movies/flv/' + flv + '.flv';

	var so = new SWFObject('/swf/flvplayer.swf', id + flv, w, h + 40, '8', '#ffffff');
	so.addVariable('flv', flvfile);
	so.write(id);
}

FLVPlayer.getFlvPath = function ( flv ){

	var flvfile;
	var cc = location.href.split('/')[3];
	if (cc == 'jp' && (location.href.indexOf('wii.com') != -1 || location.href.indexOf('210.172.37') != -1)) {
		flvfile = 'rtmp://fms.wii.com/wii/_definst_/' + flv + '.flv';
	} else {
		flvfile = this.movieDomain + cc + '/movies/flv/' + flv + '.flv';
	}
	
	return flvfile;
}