$(document).ready(function(){
	var images = ['homebg_01','homebg_02','homebg_03','homebg_04','homebg_05','homebg_06','homebg_07','homebg_08','homebg_09','homebg_10',];
	images.sort(function(){return 0.5 - Math.random()})

	var rndnum = Math.floor(Math.random() * images.length);

	$('#home-content').css('background-image', 'url(/img/bgs/pages/' + images[rndnum] + '.jpg)');
	$('html').removeClass('js');
});