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