function initTheme() {
	$('body').prepend('<div id="right-extra-bg" />');
}
function rollBackTheme() {
	$('#right-extra-bg').remove();
}

$(function() {
	initTheme();
});

