function next_pic(){
var imgId = Math.floor(Math.random()*image_links.length);
//alert(imgId);
	document.getElementById('mPic').src='/index_images/'+image_links[imgId];
	t= setTimeout("next_pic()", 16000);
}