function place_pix(howmanypix){
var PictureLineUp = new Array();
PictureLineUp[0] ='images/fun_in_sun.jpg';
PictureLineUp[1] ='photos/wade_palmer_c2f_th.jpg';
PictureLineUp[2] ='photos/rick_reynolds_th.jpg';
PictureLineUp[3] ='photos/reed_kolb_th.jpg';
PictureLineUp[4] ='photos/george_hurt_th.jpg';
PictureLineUp[5] ='photos/paul_shireman_th.jpg';
PictureLineUp[6] ='photos/n547df_01_th.jpg';
PictureLineUp[7] ='photos/mlong_1_th.jpg';
PictureLineUp[8] ='photos/marvin_williams_1_th.jpg';
PictureLineUp[9] ='photos/lynn_coltharp_th.jpg';
PictureLineUp[10]='photos/jewers_1_th.jpg';
PictureLineUp[11]='photos/clarence_1_th.jpg';

//Print table shell
document.write('<table border="0" align="center">');
//Shuffle PictureLineUp Array
shuffle(PictureLineUp);
//Print cells with pictures
for (counting=howmanypix; counting>=1; counting--){
  document.write('<tr><td>');
  document.write('<a href="photos/slides.html"><img src="'+PictureLineUp[counting]+'" border="0" width="100"></a>');
  document.write('<BR><BR></td></tr>');
}
//Finish table shell
document.write('</table>');
}

shuffle = function(v){
    //+ Jonas Raoni Soares Silva
    //@ http://jsfromhell.com/array/shuffle [rev. #1]
    for(var j, x, i = v.length; i; j = parseInt(Math.random() * i), x = v[--i], v[i] = v[j], v[j] = x);
    return v;
};
