

DIGDEEP.personalise.setBackground = function() {
	var background = $.cookie("my-digdeep-personalised-background");

	if(typeof background === 'string' && background !== '') {
		document.body.className = document.body.className + ' ' + background;
	} else {
		document.body.className = document.body.className + ' background-01';
	}
};

(function() {
	DIGDEEP.personalise.setBackground();
})();
