function tagline () {
		var num = Math.round(Math.random()*3);

		if (num == 0) {
	      return('images/quote1.png');
		}
		if (num == 1) {
		  return('images/quote2.png');
		}
		if (num == 2) {
		  return('images/quote3.png');
		}
		if (num == 3) {
		  return('images/quote4.png');
		}
if (num == 4) {
		  return('images/quote5.png');
		}
		
}


