// Begin resize code

function sizeIt() 
{ 
for (i=1;i<document.images.length;i++) 
{ 
if (document.images[i].width > 500) 
{ 
document.images[i].width = 500; 
} 
} 
} 

// end resize Code