$(document).ready(function(){
	setTimeout(function(){
		$('a', $(document)).each(function(){
			if($(this).width() == 130 && $(this).height() == 13)
			{
			 $('img', $(this)).attr('src', ' ').attr('alt', ' ');
			}
		});
	},500);
});
