// nav-top mootools effectje


window.addEvent('domready', function(){
	var list = $$('#top-nav li a');
 
	list.each(function(element) {
 
		var fx = new Fx.Styles(element, {duration:200, wait:false});
		element.addEvents({
			'mouseenter': function(){
// element.setStyle('background-image', 'url(fileadmin/templates/img/navtop-bg-yellow.png)'); // Set Background Image for element
				
 
				fx.start({
					'margin-right': 5,	
					 color: '#000'					
				});
				// element.setStyle('font-weight','bold');
			},
			'mouseleave': function(){
 
				//element.setStyle('background-image', 'url(fileadmin/templates/img/navtop-bg.png)'); // Set Background Image for element
 
				fx.start({
					'margin-right': 0,
					color: '#555'								
				});
				// element.setStyle('font-weight','normal');
			}
		});
 
	});
});

