function scrollIt(scrollto)
{
	//alert(scrollto);
	var scroll = new Fx.Scroll('demo-wrapper', {
			wait: false,
			duration: 500,
			transition: Fx.Transitions.Quad.easeInOut
	});

	scroll.toElement('content_'+scrollto);
		
}

function scrollIt2(scrollto)
{
	var scroll = new Fx.Scroll('demo-wrapper', {
			wait: false,
			duration: 500,
			transition: Fx.Transitions.Quad.easeInOut
	});

	scroll.toElement('content_'+scrollto);
}