/*
	window.addEvent('domready', function(){
		new Accordion('h3.atStart', 'div.atStart', {
			opacity: true,
			duration: 200,
			transition: Fx.Transitions.Expo.easeOut,
						display: 0,
						onActive: function(toggler, element){
				toggler.addClass('toggle-hilite');
			},
			onBackground: function(toggler, element){
				toggler.removeClass('toggle-hilite');
			}
		});
});*/
/*
 jQuery(document).ready(function(){
   jQuery("h3.atStart").click(function(event){
       alert('1111111111111');
//       $(this).hide();
   });
 });
*/
on_hide = function(val){
    jQuery('.'+val).toggle();
}
