		function random_imglink(){
  		var myimages=new Array()
  		//specify random images below. You can have as many as you wish
  			myimages[1]="img/hero_pencil.jpg"
  			myimages[2]="img/hero_jackson.jpg"
  			myimages[3]="img/hero_laptop.jpg"
			myimages[4]="img/hero_vicksburg.jpg"
			myimages[5]="img/hero_hands.jpg"
 		var ry=Math.floor(Math.random()*myimages.length)
  		if (ry==0)
        	ry=1
           	document.write('<img src="'+myimages[ry]+'" alt="MuniStrategies, LLC" id="hero-img" />')
		}
