function repositionBody(){
	$('#container').css('top',Math.round($(document).height() / 2) - ($('#container').height() / 2));
	$('#container').css('left',Math.round($(document).width() / 2) - ($('#container').width() / 2));
}
/* set a background */
/*$(document).ready(function(){
/*	var maxBg = 7;
/*	var pageBg = Math.round(Math.random()*(maxBg));
/*	var img = 'url(/assets/images/bg-0'+pageBg+'.jpg)';
/*	$('body').css('background-image',img);
/*});*/

/* remove loader and show page once everything's done */
$(window).load(function(){
	$(window).resize(repositionBody);
	$('#site-loader').remove();
	$('#wrapper').removeClass('hidden');
	repositionBody();
});
