// JavaScript Document
$(function() { 
	$('.gensmall a img').each(function(){
       $(this).removeAttr('width');
       $(this).removeAttr('height');
	   });
	$('.nowrap a img').each(function(){
       $(this).removeAttr('width');
       $(this).removeAttr('height');
	   });
	$('.profile img').each(function(){
       $(this).removeAttr('width');
       $(this).removeAttr('height');
	   });
});

