// Set the following variable to the total number of images in 
// the header folder
numberOfPics = 17;

// Now we pic the image...
randomHeaderImage = Math.floor((Math.random() * numberOfPics) + 1);

// and create the IMG tag
document.write("<img src='header/headerpic" + randomHeaderImage + ".jpg' />");