// JavaScript Document
$(document).ready(function(){
	$(".post").each(function(){
		var author=$(this).find(".author").text();
		//alert(author);
		$(this).find(".author_text").text(author);
                var imgname=jQuery.trim(author);
		var imgsrc="/images2010/leaders/" + imgname + ".jpg";
		$(this).find(".authorimg").attr('src',imgsrc);
if(imgname==""){
$(this).find(".authorimg").attr('src',"/images2010/logo.gif");
}
});						   
});

