$(document).ready(function(){
	bgImageTotal=7;  
	randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
	imgPath=('images/storefront/'+randomNumber+'.jpg');
	$('#main-sfnt').css('background-image', ('url("'+imgPath+'")'));
});
