/*!
 * 计彩中国 精彩你我
 * jquery 库
 */
$(document).ready(function(){
	//自动图片缩略
    $('.list_c').autoResize({height:150});
});   jQuery.fn.autoResize = function(options)
{
    var opts = {
        'width' : 140,
        'height': 100
    }
    var opt = $.extend(true, {},opts,options || {});
    width = opt.width;
    height = opt.height;
    $('img',this).each(function(){
        var image = new Image();
        image.src = $(this).attr('src');   if(image.width > 0 && image.height > 0 ){
            var image_rate = 1;
            if( (width / image.width) < (height / image.height)){
                image_rate = width / image.width ;
            }else{
                image_rate = height / image.height ;
            }
            if ( image_rate <= 1){
                $(this).width(image.width * image_rate);
                $(this).height(image.height * image_rate);
            }
        }
    });
	//其他方法
}
