window.addEvent('domready', function(){
	var menub = $$('.menub');
	var menul = $$('.menul');
	
	menub.each(function(el, x){
		el.addEvent('mouseenter', function(){
			el.set('morph', {duration: 300});
			el.morph({
				'background-color': '#DDDDDD',
				'color' : '#000000'
			});
			menul[x].set('tween', {duration: 300});
			menul[x].tween('border-bottom-color', '#009900');
		});
		el.addEvent('mouseleave', function(){
			el.morph({
				'background-color': '#F9F9F9',
				'color' : '#666666'
			});
			if(menul[x].hasClass('active'))
			{
				menul[x].tween('border-bottom-color', '#702536');
			}
			else
			{
				menul[x].tween('border-bottom-color', '#666666');
			}
		});
	});
	
	var menu = $('menu');
	var white = $('white');
	var content = $('content');
	var cont = $('cont');
	var bg = $('bg');
	var fw = $('fillwhite');
	
	var y = menu.getSize().y+10;
	var xy = white.getSize().y;
	
	if((y-10) > xy)
	{
		white.setStyle('height', y);
		content.setStyle('height', y);
		cont.setStyle('height', y);
		fw.setStyle('height', (y-bg.getSize().y));
		fw.setStyle('margin-top', bg.getSize().y);
	}
});