jQuery(document).ready(function($) { 
$("a.zoomvideo").click(function() {
	var title=$(this).attr('title'), props=((title||'').indexOf(',')>=0?title.split(',',2):[(title|''),'']), dims=(props[1]+'x').split('x');
	$.fancybox({'padding':0, 'autoScale':false, 'transitionIn':'none', 'transitionOut':'none', 'title':props[0], 'href':this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'), 'width':(dims[0]||680), 'height':(dims[1]||495), 'type':'swf', 'swf':{'wmode':'transparent', 'allowfullscreen':'true'}});
	return false;});
$('a.zoom,a[href$=".jpg"],a[href$=".png"],a[href$=".gif"]').fancybox();
$('a.fancyimg').click(function(e){
	var title=$(this).attr('title'), href=$(this).attr('href'), src = (title.indexOf(',')>=0?title.split(',',2):['',title]), srcimg=(src[1] || href);
	$.fancybox({'type':'image','href':srcimg,'title':(src[0]!=''?('Source: <a href="'+href+'" target="_blank">'+src[0]+'</a>'):'')}); return false; });
});
