$(document).ready(function() {
	/* Check on the visitor's background preferences */
	if ($.cookie('backgroundpref')) $('html').css('background-image', 'url(/img/bg/'+$.cookie('backgroundpref')+'.jpg)');

	/* Setup behaviors for background selector */
	$('#back1').click(function() {
		$('html').css('background-image', 'url(/img/bg/body_01.jpg)');
		$.cookie('backgroundpref', 'body_01', {expires: 365});
	});
	$('#back2').click(function() {
		$('html').css('background-image', 'url(/img/bg/body_02.jpg)');	
		$.cookie('backgroundpref', 'body_02', {expires: 365});		
	});
	$('#back3').click(function() {
		$('html').css('background-image', 'url(/img/bg/body_03.jpg)');	
		$.cookie('backgroundpref', 'body_03', {expires: 365});	
	});
	$('#back4').click(function() {
		$('html').css('background-image', 'url(/img/bg/body_04.jpg)');
		$.cookie('backgroundpref', 'body_04', {expires: 365});
	});
});

