var my_base_url='http://www.theindianmasala.com'; var my_pligg_base=''; function resize_images() { for (i = 0; i < document.images.length; i++) { while ( !document.images[i].complete ) { break; } // skip image if not inside story content if(!document.images[i].parentNode.id || document.images[i].parentNode.id.indexOf('ls_contents') < 0) continue; width = document.images[i].width; height = document.images[i].height; maxWidth = 500; maxHeight = 200; isStoryPage = (location.href.indexOf("\/story.php?") > 0); isImageInSubLink = document.images[i].parentNode.id != "ls_contents-0"; // scale down but make story images a little bigger (not for sublinks) if(isStoryPage && !isImageInSubLink ) { maxWidth = 640; maxHeight = 800; } if ( width > maxWidth ) { height = height * (maxWidth/document.images[i].width) width = maxWidth; } if ( height > maxHeight ) { width = width * (maxHeight/document.images[i].height) height = maxHeight; } document.images[i].width = width; document.images[i].height = height; } }