// JavaScript Document
$(document).ready(function(){
	loadList('sent_by', 'RiachueloPreVest');
});

function loadList(type, id){
	$('#videoList').html('<img src="../img/ajax-loading.gif" class="imgLoading" />').load('operacoes.php', {'type': type, 'id': id, 'op': 'loadList'}, function(){
		setEventListeners();
	});
}

function loadVideo(videoId){
	$('#videoPlayer').html('<img src="../img/ajax-loading.gif" class="imgLoading" />').load('operacoes.php', {'videoId': videoId, 'op': 'loadVideo'}, function(){
		$('div#container').show();
		$('div#pagePreloader').hide();
	});
}

function setEventListeners(){
	$('div.videoEntry a').click(function(e){
		e.preventDefault();
		loadVideo($(this).attr('rel'));
	});
}

function onYouTubePlayerReady(playerId) {
  ytplayer = document.getElementById("myytplayer");
  ytplayer.addEventListener("onStateChange", "onytplayerStateChange");
}

function onytplayerStateChange(newState) {
	//to = setTimeout()
	//alert("Player's new state: " + newState);
}

