// compatible with: ie 4.0, 5.1, 6.0; nn 4.7; opera 3.0, 5.0, 6.0

function switchDynamicImage(imageObject)
{
  var imageSrc;
  imageSrc = imageObject.src;
  imageObject.src = imageObject.lowsrc;
  imageObject.lowsrc = imageSrc;
}






