$(document).ready(function(){
	$('.pde').each(function(){
		$('img', this)
			.removeAttr('width')
			.removeAttr('height')
		
		if ($('img', this).attr('src') != undefined){
			var newImg = $('img', this).attr('src').replace('landscape190', 'landscape110')
		
			$('img', this)
				.attr('src', newImg)
		}
	})
})

