﻿$.fn.ytplaylist=function(a){var a=jQuery.extend({holderId:"ytVideo",yt_playlist_url:"http://gdata.youtube.com/feeds/api/users/1cgames/uploads?max-results=13&start-index=1&alt=jsonc&v=2",playerHeight:180,playerWidth:275},a);return this.each(function(){var b=$(this);b.click(f);window.YTCallback=d;c();function e(h){var g="";g+='<iframe width="'+a.playerWidth+'" height="'+a.playerHeight+'"';g+=' src="http://www.youtube.com/embed/'+h+'" frameborder="0" allowtransparency="true"';g+=" allowfullscreen></iframe>";return g}function c(){$.ajax({url:a.yt_playlist_url,dataType:"jsonp",crossDomain:true,cache:true,jsonpCallback:"YTCallback"})}function f(h){var g=$(h.target);if(g[0].tagName!=="A"){g=g.closest("A")}if(g.length>0){$("#"+a.holderId).hide().empty().html(e(g.data("ytid"))).show()}h.preventDefault()}function d(i){var h=[],g=i.data.items;$(g).each(function(j){var k=g[j],l=k.title;h.push('<li><a href="javascript:void(0);" data-ytid="'+k.id+'"'+(l.length>50?' title="'+l+'"':"")+">"+l+"</a></li>")});b.empty().html(h.join(""));$("LI:first-child > A",b).click()}})};
