$(document).ready(function() {
	function activateVideo($tr, autoplay) {
        var ytUrl = 'http://www.youtube.com/v/' + 
			$tr.find('.videoTitle')
            .attr('youtube') + '&hl=en_US&fs=1&autoplay=' + autoplay;
        $('#youtubeContainer').html('<object width="560" height="340"><param name="movie" value="' + ytUrl + '"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="' + ytUrl + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object>');
	}
	$('#videoList TR:nth-child(odd)').addClass('darkTranslucent');
    $('#videoList TR').hover(function() {
        $(this).addClass('hoverTranslucent');
    }, function() {
        $(this).removeClass('hoverTranslucent');
    }).click(function() {
		activateVideo($(this), 1);
    });


	//$('#videoList TR').eq(0).click();
	activateVideo($('#videoList TR').eq(0), 0);
});
