window.addEvent('domready', function() {

	new SmoothScroll({ duration: 1200 }); 	

	//create our Accordion instance
		var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {start:'all-close'}, {
			opacity: false,
			alwaysHide: true, 
			show:[],
			onActive: function(toggler, element){
				toggler.setStyle('color', '#ffffff');
			},
			onBackground: function(toggler, element){
				toggler.setStyle('color', '#ffffff');
			}
		});


	//Modifies left-nav links to the "Charts & Tables" section to jump down the page and open the appropriate accordian panel.
		$('data_national').addEvent('click', function() {
			myAccordion.display(0); // 0 will open the 1st panel,1 will open the 2nd and so on...
		});
//		
		$('data_industry').addEvent('click', function() {
			myAccordion.display(1); // 0 will open the 1st panel,1 will open the 2nd and so on...
		});
//		
		$('data_international').addEvent('click', function() {
			myAccordion.display(2); // 0 will open the 1st panel,1 will open the 2nd and so on...
		});
//		
		$('data_regional').addEvent('click', function() {
			myAccordion.display(3); // 0 will open the 1st panel,1 will open the 2nd and so on...
		});
//		
		$('data_appendixes').addEvent('click', function() {
			myAccordion.display(4); // 0 will open the 1st panel,1 will open the 2nd and so on...
		});
});