window.addEvent('domready', function() {

var inputbox = $$('#search_input .inputbox');
inputbox.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:200, wait:false});
 
	element.addEvent('mouseenter', function(){
		fx.start({
			'color': '#000'
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
			'color': '#666'
		});
	});
 
});

});

window.addEvent('domready', function() {

var menuleft = $$('.moduletable_menu ul li a');
menuleft.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:200, wait:false});
 
	element.addEvent('mouseenter', function(){
		fx.start({
			'color': '#5c7f8c',
			'padding-left': 40
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
			'color': '#666',
			'padding-left': 25
		});
	});
 
});

});
