/* <meta content="charset=UTF-8" /> */
$(document).ready(function(){

/*===== single tag bigin =====*/
	$("#list .tags a").each(function () {
		var tagcloudColor = $(this).html();
		$(this).attr({
			style: "background-color: #" + tagcloudColor + ";"
		});
	});
/*----- single tag end -----*/

/*===== nav-old tag bigin =====*/
	$("#nav-old #tagcloud a").each(function () {
		var tagcloudColor = $(this).html();
		$(this).attr({
			style: "background-color: #" + tagcloudColor + ";"
		});
	});
/*----- nav-old tag end -----*/
	
});


