// JavaScript Document
	jQuery().ready(function(){
		// simple Accordion
		jQuery('#news-article').Accordion().activate(1);;
		// bind to change event of select to control first and seconds accordion
		// similar to tab's plugin triggerTab(), without an extra method
		jQuery('#switch select').change(function() {
			jQuery('#news-article').activate( this.selectedIndex-1 );
		});
		jQuery('#close').click(function() {
			jQuery('#news-article').activate(-1);
		});
		jQuery('#switch2').change(function() {
			jQuery('#news-article').activate(this.value);
		});
		
	});
