$(document).ready(function(){

	$('img').each(function(){
		if ($(this).attr('src') == "") {
			$(this).attr('src','http://placehold.it/' + $(this).width() + 'x' + $(this).height());
		}
	});
	
	
	
});//end of .ready(function)
























