// With prototype.lite.js, moo.fx.js, and moo.fx.pack.js
// Use to initialize the Careers page expanding sections

var salesdesc, salesopen, floordesc, flooropen, amandesc, amanopen, stmandesc, stmanopen, merchdesc, merchopen;

window.onload = function() {
	salesdesc = new fx.Combo('salesdesc', {height: true, opacity: true, duration: 500});
	salesopen = new fx.Combo('salesopen', {height: true, opacity: true, duration: 500});
	floordesc = new fx.Combo('floordesc', {height: true, opacity: true, duration: 500});
	flooropen = new fx.Combo('flooropen', {height: true, opacity: true, duration: 500});
	amandesc = new fx.Combo('amandesc', {height: true, opacity: true, duration: 500});
	amanopen = new fx.Combo('amanopen', {height: true, opacity: true, duration: 500});
	stmandesc = new fx.Combo('stmandesc', {height: true, opacity: true, duration: 500});
	stmanopen = new fx.Combo('stmanopen', {height: true, opacity: true, duration: 500});
	merchdesc = new fx.Combo('merchdesc', {height: true, opacity: true, duration: 500});
	merchopen = new fx.Combo('merchopen', {height: true, opacity: true, duration: 500});
	
	// Hide them to begin with
	salesdesc.hide();
	salesopen.hide();
	floordesc.hide();
	flooropen.hide();
	amandesc.hide();
	amanopen.hide();
	stmandesc.hide();
	stmanopen.hide();
	merchdesc.hide();
	merchopen.hide();
}