window.addEvent('domready',function() {
									
	//Create the HTML for the side pieces, and insert them into the document
	new Element('div',{'id':'sides'}).
	adopt(new Element('div',{'id':'sides-inner'}).
	adopt(new Element('div',{'id':'left-side'}),new Element('div',{'id':'right-side'}))).
	inject($(document.body),'top');
	
	//Set the container margin so it overlays the BG pieces...
	$('container').setStyle('margin-top','-800px');
	
	/*$$('.site-logo').addEvents({
	
		'mouseover':function(e) {
			this.get('tween',{'property':'top','duration':200}).start('-10px');
		},
		'mouseout':function(e) {
			this.get('tween',{'property':'top'}).start('0px');
		}
	});*/
	
});