jQuery().ready(function () {
	// set up panels
	$('.panel').each(function () {
		$this = $(this);
		$this.wrap('<div class="bg ' + $this.attr('class').replace('panel', '') + '"></div>');
	});
});
