
	$(document).ready(
	function(){

				$('[id*="newImg"]').each(
				function()
				{
					if($(this).attr('src') == '')
					{


												$(this).hide();
						$(this).parent("td").hide();

					}
				});
	
	});

