// JavaScript Document
jQuery("document").ready(function() { 
	jQuery("img.avatar").each(function() {
  		if(jQuery(this).attr("alt") == 'clerk') jQuery(this).remove()
	});

	jQuery(".avatar").each(function() {
  		if(jQuery(this).attr("alt") == 'clerk') jQuery(this).remove()
	});

	jQuery("img.avatar").each(function() {
  		if(jQuery(this).attr("alt") == 'webmaster') jQuery(this).remove()
	});

	jQuery(".avatar").each(function() {
  		if(jQuery(this).attr("alt") == 'webmaster') jQuery(this).remove()
	});

	jQuery("blockquote").css("margin-right","5px");
	
	jQuery("blockquote").css("margin-left","5px");
	
	jQuery("#text-2").css("border","none");
	
	jQuery(".textwidget").css("line-height","0em");
	

});	