window.addEvent('domready', function() {
	$$('.nav-main li').addEvents({
		'mouseenter': function(){
			$(this).getElements('ul').show();
			$(this).addClass('active');

		},
		'mouseleave': function(){
			$(this).getElements('ul').hide();
			$(this).removeClass('active');
		}
	});
	$$('.controler').addEvent('click', function(event){
		if($$('.controler-open').getStyle('top')=='-180px'){
		$$('.controler-open').tween('top', '-180', '0');}
		if($$('.controler-open').getStyle('top')=='0px'){
		$$('.controler-open').tween('top', '0', '-180');}
			
		return false;
	});
});


