function initscrollpostsor(){
	divs = document.getElementsByTagName('div');
	i=divs.length-1;
	
	togglers = new Array();
	stretchers = new Array();
	
	do {
		if (divs[i].className=="toggle") 
			togglers[i]=divs[i];
		if(divs[i].className=="toggled") 
			stretchers[i]=divs[i];
	}
	
	while(--i) {
		a=new Accordion(togglers,stretchers,{
			show: false,
			height: false,
			width: true,
			display: 0,
			alwaysHide: false,
			duration: 200,
			fixedWidth: 660,
			fps: 60,
			opacity: false,
			transition: Fx.Transitions.sineInOut,
			onActive: 		function(toggler,i){
								toggler.addClass('active');
								i.addClass('active');
							},
			onBackground:	function(toggler,i){
								toggler.removeClass('active');
								i.removeClass('active');
							}
		}); // end new instance block
	} // end while
} // end initscrollpostsor

window.onload = initscrollpostsor;
	
function fixed(){
	document.getElementById("fixed").scrollIntoView(true);
	return false;
}

