
document.observe('dom:loaded',function(){
    
	$('header').insert({after : $('other').remove()});
    $('other').setStyle({display : 'block'});
	$('wrapper').insert({top : $('home').remove()});
    
	$('shop').select('li.selected').each(function(element){
		element.select('a.standard').invoke('hide'); element.select('a.highlighted').invoke('show');
	});
});