$(function($) {
   $("#videos .thumb").click(function() {
       var title = $(".thumbtitle",this).html();
       var desc = $(".description",this).html();
       var flv = $(this).attr("flvsource");
       $("img",".thumb").css({"border":"1px solid #666"});
       $("img",this).css({"border":"2px solid yellow"});
       $('#videoPlayer').get(0).playVideo(flv);
       $("#videoTitle").html(title);
       $("#videoDescription").html(desc);
		return false;
   });

	$("#videos .thumb:first").each(function() {
		var thumb = $(this);
		var intid = setInterval(function() {
			if ($('#videoPlayer').get(0).playVideo) {
				thumb.click();
				clearInterval(intid);
			}
		}, 250);
	});

   $('#thumblist').jScrollPane({scrollbarWidth:17, scrollbarMargin:5});
});
