// With prototype.lite.js, moo.fx.js, and moo.fx.pack.js
// Use to initialize the Careers page expanding sections

var question;
var demo;
var mycontent;

window.onload = function() {
	question = new fx.Combo('question', {height: true, opacity: true, duration: 500});
	//demo = new fx.Combo('demo', {height: true, opacity: true,duration: 500});

	question.hide();

	mycontent = new fx.Combo('mycontent', {height: true, opacity: true, duration: 500});
	
	mycontent.hide();
	// Hide them to begin with
	//demo.hide();

}