oneBit = new OneBit('images/1bit.swf');
		
window.addEvent('domready', function(){

	oneBit.specify('playerSize', '8');
	oneBit.specify('color', '#33FFEE')
	oneBit.specify('background', 'transparent')
	oneBit.specify('position', 'before')
	oneBit.specify('analytics', true)
	oneBit.apply('a');

	var accordion = new Accordion($('accordion'), '.toggler', 'div.info', {
		show: -1,
		alwaysHide: true,
		duration : 250,
		onActive: function(toggler, element){
			element.setStyle('margin-bottom', '12px');
			//toggler.getElements('a.togglerLink').setHTML('Less info');
		},
		onBackground: function(toggler, element){
			element.setStyle('margin-bottom', '0px');
			//toggler.getElements('a.togglerLink').setHTML('More info');
		}
	});

	// open the accordion section relative to the url
    var found = -1;
    $$('.toggler a').each(function(link, i) {
        if (window.location.hash.test(link.hash))
        	found = i;
    });
    accordion.display(found);

});