$(document).ready(function(){

// Random Banner Background Image
	var randomBackground = ['one', 'two', 'three', 'four', 'five'];
  	var rndNum = Math.floor(Math.random() * randomBackground.length);
  	$("#statement").addClass(randomBackground[rndNum]);


});

