//------- Global variables ---------------------
var pushList = 'http://'+location.hostname+'/movie/pushList.xml';

//--------------------------------
function playListMovie(){
	var flashvars = {
		file:pushList, 
		autostart:'true',
		repeat:'always',
		shuffle:'true',
		controlbar:'over',
		height: '230',
		playlist: 'bottom',
		playlistsize: '60',
		width: '220'
		//skin:'http://www.monoglobe.jp/common/player/skin.swf',
		//backcolor: '#000000'
	}
	var params = {
		allowfullscreen:'true', 
		allowscriptaccess:'always'
	}
	var attributes = {
		id:"player1",
		name:"player1"
	}
	swfobject.embedSWF("http://www.monoglobe.jp/common/player/4.3/player.swf", "pushPlay", "222","232", "9.0.115", false, flashvars, params, attributes);
}

jQuery.event.add(window,"load", playListMovie);