window.addEvent('domready', function() {
    $('menu-home').addEvents({
		'mouseenter': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/home-on.png)');
			this.getElements('div').setStyle('color','#000000');
		},
		'mouseleave': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/home-off.png)');
			this.getElements('div').setStyle('color','#c3c3c3');
		}
	});
	$('menu-news').addEvents({
		'mouseenter': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/news-on.png)');
			this.getElements('div').setStyle('color','#000000');
		},
		'mouseleave': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/news-off.png)');
			this.getElements('div').setStyle('color','#c3c3c3');
		}
	});
	$('menu-events').addEvents({
		'mouseenter': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/events-on.png)');
			this.getElements('div').setStyle('color','#000000');
		},
		'mouseleave': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/events-off.png)');
			this.getElements('div').setStyle('color','#c3c3c3');
		}
	});
	$('menu-prosp').addEvents({
		'mouseenter': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/prosp-on.png)');
			this.getElements('div').setStyle('color','#000000');
		},
		'mouseleave': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/prosp-off.png)');
			this.getElements('div').setStyle('color','#c3c3c3');
		}
	});
	$('menu-current').addEvents({
		'mouseenter': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/current-on.png)');
			this.getElements('div').setStyle('color','#000000');
		},
		'mouseleave': function(){
			this.setStyle('background-image', 'url(/files/themes/preschool/images/current-off.png)');
			this.getElements('div').setStyle('color','#c3c3c3');
		}
	});
});
