var my_base_url='http://www.bestofindya.com';
var my_pligg_base='/news';


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;

    orgWidth= document.images[i].width;
    orgHeight = document.images[i].height;
    
    width = document.images[i].width;
    height = document.images[i].height;
    
    maxWidth = 320;
    maxHeight = 240;
    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 = 320;
      maxHeight = 240;
    }

    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;
      

  }

}
