window.addEvent('domready', function(){
		$('drop_down_menu').getElements('li.menu').each( function( elem ){
			if($chk(elem.getElement('ul.links'))) {
				var list = elem.getElement('ul.links');
				var myFx = new Fx.Slide(list, {
					'duration': 800 ,
					'transition': 'elastic:out'
				}).hide();
				
				elem.addEvents({
					'mouseenter' : function(){
						myFx.cancel();
						myFx.slideIn();
					},
					'mouseleave' : function(){
						myFx.cancel();
						myFx.hide();
						//myFx.slideOut();
						//myFx.fade();
						//list.fade();
						//myFx.slideOut();
						//alert("out");
					}
				});
			}
		});
		
		$$('.aform').each(function(aformObj) {
			aformObj.slide();
		});
		
		
		var bla = new slajder({'slideDiv' : 'slajder'});
		bla.start();
});
