window.addEvent('domready', function() {
var menu = $$('#SITEhovermenu a');
menu.each(function(element) {
	var fx = new Fx.Styles(element, {duration:150, wait:false});
 
	element.addEvent('mouseenter', function(){
		fx.start({
			'margin-top': 0,
			'padding-bottom': '5',
			position: 'relative'
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
			'margin-top': 5,
			'padding-bottom': '0',
			position: 'relative'
		});
	});
});
var menuselected = $$('#SITEhovermenu a.SITEselected');
menuselected.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:150, wait:false});
 
	element.addEvent('mouseenter', function(){
		fx.start({
			'margin-top': 0,
			'padding-bottom': '5',
			position: 'relative'
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
			'margin-top': 5,
			'padding-bottom': '0',
			position: 'relative'
		});
	});
 
});
				});
				
