function get_random()
{
    var ranNum= Math.floor(Math.random()*4);
    return ranNum;
}

function getHeadline()
{
   var whichHeadline=get_random();

    var headline=new Array(4)
     headline[0]="Our mission is to enhance the <em>value</em>, <em>comfort</em> and <em>beauty</em> of your home.";   
 	 headline[1]="Our Promise to You:<br/>We are committed to <em>always</em> providing you with a <em>satisfying</em> shopping experience.";
     headline[2]="For more than 25 years we have provided central Illinois with <em>premier decor solutions</em> for any size home and budget.";
     headline[3]="Dramatic cornices. Elegant Blinds. Sweeping cascades of color...<br/> the Blind Man <em>transforms</em> any window into a <em>breathtaking</em> work of art.";   

   return(headline[whichHeadline]);
  }
