// メインスレッド

tv = {}; // プレーヤオブジェクト（キュー）
movieList = []; // リスト
currentNumber = -1; // 先頭を0として扱う
repeating = true; // リピート再生

initialParams = {}; // イニシャルパラメータ
startingListCount = 0; // 開始時のリストのムービー数


//$.getJSONP(feedsUrl, function(json){alert(json);
//	jQuery(main);
//});

$.ajax({
	dataType: "json",
	data: {
		"url": location.href
	},
	cache: false,
	url: "/initial_params/",
	success: function (data) {
		initialParams = data;
	},
	complete: function (req) {
		jQuery(main);
	}
});
