//Recent Comments Widget originally by Blogger Templates and updated by Blogger Buster

function showrecentcomments(json) {
	document.write('<ul>');
	for(var i=0;i<a_rc;i++) {
		var b_rc=json.feed.entry[i];
		var c_rc;
		if(i==json.feed.entry.length)break;
		for(var k=0;k<b_rc.link.length;k++) {
			if(b_rc.link[k].rel=='alternate') {
				c_rc=b_rc.link[k].href;
				break;
				}
		}
		c_rc=c_rc.replace("#","#comment-");
		var d_rc=c_rc.split("#");
		d_rc=d_rc[0];
		var e_rc=d_rc.split("/");
		e_rc=e_rc[5];
		e_rc=e_rc.split(".html");
		e_rc=e_rc[0];
		var f_rc=e_rc.replace(/-/g," ");
		f_rc=f_rc.capitalize();
		f_rc=f_rc.link(d_rc);
		var g_rc=b_rc.published.$t;
		var h_rc=g_rc.substring(0,4);
		var i_rc=g_rc.substring(5,7);
		var j_rc=g_rc.substring(8,10);
		var k_rc=new Array();
		k_rc[1]="Jan";
		k_rc[2]="Feb";
		k_rc[3]="Mar";
		k_rc[4]="Apr";
		k_rc[5]="May";
		k_rc[6]="Jun";
		k_rc[7]="Jul";
		k_rc[8]="Aug";
		k_rc[9]="Sep";
		k_rc[10]="Oct";
		k_rc[11]="Nov";
		k_rc[12]="Dec";
		if("content" in b_rc) {
			var l_rc=b_rc.content.$t;
		}
		else if("summary" in b_rc) {
			var l_rc=b_rc.summary.$t;
		}
		else var l_rc="";
		var re=/<\S[^>]*>/g;
		l_rc=l_rc.replace(re,"");
		document.write('<li><strong>');
		document.write(b_rc.author[0].name.$t);
		if(n_rc==true)document.write('</strong><br />en '+f_rc+'</li>');}
		document.write('</ul>');
}

//MooTools, My Object Oriented Javascript Tools. Copyright (c) 2006-2007 Valerio Proietti, <http://mad4milk.net>, MIT Style License.

var MooTools={version:"1.11"};function $defined(A){return(A!=undefined);}function $type(B){if(!$defined(B)){return false;}if(B.htmlElement){return"element";
}var A=typeof B;if(A=="object"&&B.nodeName){switch(B.nodeType){case 1:return"element";case 3:return(/\S/).test(B.nodeValue)?"textnode":"whitespace";}}if(A=="object"||A=="function"){switch(B.constructor){case Array:return"array";
case RegExp:return"regexp";case Class:return"class";}if(typeof B.length=="number"){if(B.item){return"collection";}if(B.callee){return"arguments";}}}return A;
}function $merge(){var C={};for(var B=0;B<arguments.length;B++){for(var E in arguments[B]){var A=arguments[B][E];var D=C[E];if(D&&$type(A)=="object"&&$type(D)=="object"){C[E]=$merge(D,A);
}else{C[E]=A;}}}return C;}var $extend=function(){var A=arguments;if(!A[1]){A=[this,A[0]];}for(var B in A[1]){A[0][B]=A[1][B];}return A[0];};var $native=function(){for(var B=0,A=arguments.length;
B<A;B++){arguments[B].extend=function(C){for(var D in C){if(!this.prototype[D]){this.prototype[D]=C[D];}if(!this[D]){this[D]=$native.generic(D);}}};}};
$native.generic=function(A){return function(B){return this.prototype[A].apply(B,Array.prototype.slice.call(arguments,1));};};$native(Function,Array,String,Number);
function $chk(A){return !!(A||A===0);}function $pick(B,A){return $defined(B)?B:A;}function $random(B,A){return Math.floor(Math.random()*(A-B+1)+B);}function $time(){return new Date().getTime();
}function $clear(A){clearTimeout(A);clearInterval(A);return null;}var Abstract=function(A){A=A||{};A.extend=$extend;return A;};var Window=new Abstract(window);
var Document=new Abstract(document);document.head=document.getElementsByTagName("head")[0];window.xpath=!!(document.evaluate);if(window.ActiveXObject){window.ie=window[window.XMLHttpRequest?"ie7":"ie6"]=true;
}else{if(document.childNodes&&!document.all&&!navigator.taintEnabled){window.webkit=window[window.xpath?"webkit420":"webkit419"]=true;}else{if(document.getBoxObjectFor!=null){window.gecko=true;
}}}window.khtml=window.webkit;Object.extend=$extend;if(typeof HTMLElement=="undefined"){var HTMLElement=function(){};if(window.webkit){document.createElement("iframe");
}HTMLElement.prototype=(window.webkit)?window["[[DOMElement.prototype]]"]:{};}HTMLElement.prototype.htmlElement=function(){};if(window.ie6){try{document.execCommand("BackgroundImageCache",false,true);
}catch(e){}}String.extend({test:function(A,B){return(($type(A)=="string")?new RegExp(A,B):A).test(this);},toInt:function(){return parseInt(this,10);},toFloat:function(){return parseFloat(this);
},camelCase:function(){return this.replace(/-\D/g,function(A){return A.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/\w[A-Z]/g,function(A){return(A.charAt(0)+"-"+A.charAt(1).toLowerCase());
});},capitalize:function(){return this.replace(/\b[a-z]/g,function(A){return(A.charAt(0).toUpperCase()+A.substr(1).toLowerCase());});},trim:function(){return this.replace(/^\s+|\s+$/g,"");
},clean:function(){return this.replace(/\s{2,}/g," ").trim();},rgbToHex:function(B){var A=this.match(/\d{1,3}/g);return(A)?A.rgbToHex(B):false;},hexToRgb:function(B){var A=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);
return(A)?A.slice(1).hexToRgb(B):false;},contains:function(A,B){return(B)?(B+this+B).indexOf(B+A+B)>-1:this.indexOf(A)>-1;},escapeRegExp:function(){return this.replace(/([.*+?^${}()|[\]\/\\])/g,"\\$1");
}});Array.extend({rgbToHex:function(D){if(this.length<3){return false;}if(this.length==4&&this[3]==0&&!D){return"transparent";}var B=[];for(var A=0;A<3;
A++){var C=(this[A]-0).toString(16);B.push((C.length==1)?"0"+C:C);}return D?B:"#"+B.join("");},hexToRgb:function(C){if(this.length!=3){return false;}var A=[];
for(var B=0;B<3;B++){A.push(parseInt((this[B].length==1)?this[B]+this[B]:this[B],16));}return C?A:"rgb("+A.join(",")+")";}});