window.addEvent('domready', function() {
	var togglertitle = $$('.toggler .title');
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'div.toggler', 'div.element', {
		show: 1,
		opacity: false,
		alwaysHide:true,
		onActive: function(toggler, element){
		//$$('.title').setStyle('color', '#FF0000');
			//toggler.setStyle('color', '#FF0000');
			//toggler.setStyle('background-color', '#B5C734');
		},
		onBackground: function(toggler, element){
		//togglertitle.setStyle('color', '#000000');
			//toggler.setStyle('color', '#000000');
			//toggler.setStyle('background', 'none');
			//toggler.style.cssText = '';

		}
	});
	
//if js enabled remove anchor hrefs	
$$('ul.twocol li a').set('href', '#none');
//customer info accordion
	var myAccordion2 = new Accordion($('infocontainer'), 'ul.twocol li a', 'div.infobox', {
		show: 0,
		opacity: false,
		alwaysHide:false,
		onActive: function(toggler, element){
		//$$('.title').setStyle('color', '#FF0000');
			toggler.setStyle('color', '#C4861E');
			//toggler.setStyle('background', 'url(../img/bullet2.png);');
		},
		onBackground: function(toggler, element){
		//togglertitle.setStyle('color', '#000000');
			toggler.setStyle('color', '#145C21');
			//toggler.setStyle('background-image', '..\/img\/bullet2.png');
			//toggler.style.cssText = '';

		}
	});
});