// -*- c++ -*-
// amazon.js
//
//

//
// for amazon ad sense
//
amazon_ad_tag = "daytriponkoka-22";
amazon_ad_width = "180";
amazon_ad_height = "150";
amazon_ad_logo = "hide";
amazon_ad_discount = "remove";
amazon_color_border = "534741";
amazon_color_logo = "FFFFFF";
amazon_ad_exclude = "day+tripper";
amazon_ad_categories = "anbhclde";

//
// check amazon image and replace if that size=1x1 and
// resize rakuten image 
//
onload.queue.push(function(){
    var PTRN_amazon=/^http:\/\/images.amazon.com\/images\/P\//
    var PTRN_rakuten=/^http:\/\/.*?image.rakuten.co.jp\//
    var img=document.getElementsByTagName('img');
    for(var i=0;i<img.length;i++){
        try{
            if(PTRN_amazon.test(img[i].src)){
                var tmp=new Image();
                tmp.src=img[i].src;
                if((tmp.width==1)&&(tmp.height==1)){
                    var w=img[i].width;
                    var h=img[i].height;
                    img[i].src='http://images.amazon.com/images/G/09/nav2/dp/no-image-no-ciu._AA'+w+'_SCLZZZZZZZ_.jpg';
                    img[i].width=w;
                    img[i].height=h;
                }
            }
            else if(PTRN_rakuten.test(img[i].src)){
                var tmp=new Image();
                tmp.src=img[i].src;
                var w=tmp.width;
                var h=tmp.height;
                if((tmp.width!=128)||(tmp.height!=128)){
                    if(tmp.width>=tmp.height&&tmp.width>128){
                        h=h*w/128;
                        w=128;
                    }
                    else if(tmp.height>=tmp.width&&tmp.height>128){
                        w=w*h/128;
                        h=128;
                    }
                    img[i].width=w;
                    img[i].height=h;
                    img[i].style.padding=''+
                        (128-h)/2+'px '+
                        (128-w)/2+'px';

                }
            }
        }
        catch(e){}
    }
})
