	var set = 10;     
	var pic = new Array(set);  
        
	pic[0] = "images//masthead_1.jpg";
	pic[1] = "images/masthead_2.jpg";
	pic[2] = "images/masthead_3.jpg";
	pic[3] = "images/masthead_4.jpg";
	pic[4] = "images/masthead_5.jpg";
	pic[5] = "images/masthead_6.jpg";
	pic[6] = "images/masthead_7.jpg";
	pic[7] = "images/masthead_8.jpg";
	pic[8] = "images/masthead_9.jpg";
	pic[9] = "images/masthead_10.jpg";

	function select(range) {
	if (Math.random)
	return Math.round(Math.random() * (range-1));
	else {
	var now = new Date();
	return (now.getTime() / 1000) % range;
	} }

	var choice = select(set);

		