/*window.addEvent('domready', function() { 
	$$('ul.subnav li a').each(function(el) { 
	
		 var fx = new Fx.Morph(el,{ duration:300, link:'cancel' });
		 el.addEvents({
			  'mouseenter': function() { fx.start({ 'padding-left': 22 }); },
			  'mouseleave': function() { fx.start({ 'padding-left': 12 }); }
		 });
	}); 
	
	//create our Accordion instance
	var myAccordion = new Accordion($$('.toggler'),$$('div.element'), {
		opacity: true,
		alwaysHide: true,
		display:-1,
		
		onActive: function(toggler, element) {
		toggler.addClass('down');

		
	},
	
	//this will fire when an element starts to hide
	//will pass all other elements
	//the one closing or not opening
	onBackground: function(toggler, element) {
			toggler.removeClass('down');
	}
		
		
	});
	
	
});*/