<!--

//This line picks an image at random from the list you entered above
var randNumValue = (Math.round(Math.random()*(pic.length-1)));
var bgimage=pic[randNumValue];
var link_value = pic_link[randNumValue];

document.write('<a href="' + link_value + '">');
document.write('<img src="' + bgimage + '" width="140" height="176" border="0" id="rotating_profile_image" alt="Profile" />');
document.write('</a>');

-->



