$.fn.boxCenter = function() {
	return this.each(function(i)
			{
				var w = $(this).width(); //画像の幅
				var h = $(this).height(); //画像の高さ
				var mtop = (h/2)*(-1); //画像の高さの半分のマイナス値
				var mleft = (w/2)*(-1); //画像の幅の半分のマイナス値
				//$(this).css({"width": + w + "px" ,"height": + h + "px" , "top": "50%" , "left": "50%" , "margin-top": + mtop + "px" , "margin-left": + mleft+ "px"});
				$(this).css({"width": w + "px" ,"height": h + "px" , "top": "50%" , "left": "50%" , "margin-top": mtop + "px" , "margin-left": mleft+ "px"});
				//自分（.box img）のcssプロパティを変更
			}
	);
};

