<!--
function olcekle() {
    ims = document.images;
    for (var i in ims) {
        if (ims[i].width >= 500) {
            ims[i].width=490;
            ims[i].height=Math.round(ims[i].height*490/ims[i].width);
        }
    }
}
//-->
