/*
 * news.js
 */

$().ready(function(){
	resizeImage();
});



function resizeImage()
{
 var mw = 120; //最大幅を指定
 var sl = '#idx .news_body img'; //jQueryセレクタ記述
 $(sl).each(function(){
  var w=$(this).width();
  if (w>mw) {
   $(this).height($(this).height()*(mw/w)).width(mw);
  }
 });
}
