$('document').ready(function(){
	$("#bigcontent img").each(function(e){
		$(this).removeAttr('alt');
		$(this).removeAttr('style');
		$(this).attr({width:100});
		$(this).removeAttr('height');
		if($(this).width()>$(this).height()){
			$(this).attr('width','100').removeAttr('height').css('height','auto');
		}
		else $(this).attr('height','130').removeAttr('width').css('width','auto');;
		if($(this).width()>100)$(this).attr('width','100').removeAttr('height').css('width','100px');
		img_small_on_error($(this));
	});
});
function img_small_on_error(o){
	setTimeout(function(){
		if($(o).height()<1)$(o).attr('src','http://g-ecx.images-amazon.com/images/G/01/x-site/icons/no-img-sm._SS100_V192198896_.gif');
	}, 5000);
}
