

$.fn.cropimage = function(wsize,hsize,cname){

return this.each(function(){
		var fw = wsize;        
        var fh = hsize;        

 //画像のサイズ調整やらなんやら   
   $("."+cname).each(function(){
        
       $(this).load(function(){
        
        	var w = $(this).width();
            var h = $(this).height();
            


var topCrop =0;
var leftCrop =0;
           

      
      //横長      
        if(w>=h){
         
          var dwa = fw/w;
          var dh = h*dwa;

            
    $(this).width(fw);
    //$(this).height(fh);
      //var topCrop = ((fh-dh)/2);


          }else{
//縦長         
              
            var dwa = fw/w;
          var dh = h*dwa;
           	
         $(this).height(hsize);
           // $(this).width(fw);
   // var topCrop = ((fh-dh)/2);

        }
        
        
        
        
  //画像センタリング          
$(this).css({
        
display:"none",
             position:"relative",
             top:topCrop+"px"

});
 	
  $(this).fadeIn(2000);

            
   });
                   
 });

      
 });

}

