﻿		window.addEvent('domready', function(){
			var accordion = new Accordion('a.atStart', 'div.atStart', {
				opacity: true,
				alwaysHide: true,
				display: -1,
				height:true,
				onActive: function(toggler, element){
					 //toggler.setStyle('background', 'url(images/marker_link_down.gif) no-repeat 0px 1px'); 
					toggler.setStyle('background', 'none'); 
					// toggler.setStyle('margin-left', '0px'); 
					  toggler.setStyle('padding-left', '0px');
				},
				
				onBackground: function(toggler, element){
					 //toggler.setStyle('background', 'url(images/marker_link.gif) no-repeat 0px 1px');
					 toggler.setStyle('background', 'none');
					
					// toggler.setStyle('margin-left', '0px');
					 toggler.setStyle('padding-left', '0px');
				}
			}, $('accordion'));
			
				var accordion = new Accordion('a.atStartIcon', 'div.atStartIcon', {
				opacity: true,
				alwaysHide: true,
				display: -1,
				height:true,
				onActive: function(toggler, element){
					 toggler.setStyle('background', 'url(images/marker_link_down.gif) no-repeat 0px 1px'); 
					//toggler.setStyle('background', 'none'); 
					  toggler.setStyle('margin-left', '0px'); 
					  toggler.setStyle('padding-left', '18px');
				},
				
				onBackground: function(toggler, element){
					 toggler.setStyle('background', 'url(images/marker_link.gif) no-repeat 0px 1px');
					 //toggler.setStyle('background', 'none');
					
					 toggler.setStyle('margin-left', '0px');
					 toggler.setStyle('padding-left', '18px');
				}
			}, $('accordion'));
	
			
	//		var newTog = new Element('h3', {'class': 'toggler'}).setHTML('block name');
			
    //		var newEl = new Element('div', {'class': 'element'}).setHTML('<p>any text here</p>');
			
    //	accordion.addSection(newTog, newEl, 0);
  
 // #main a.link {text-decoration:underline; color:#c3bd0f; background:url(images/marker_link.gif) no-repeat 0 2px; padding-left:18px; font-weight:bold; padding-bottom:5px}
//#main a.link:hover {text-decoration:none}

		}); 
