jQuery(document).ready(function(){

	bgImageTotal=5;
	randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
	imgPath=('http://www.tedkennedy.org/page/-/img/'+randomNumber+'.png');
	jQuery('.etching').css('background-image', ('url("'+imgPath+'")'));

});
