window.addEvent('domready',function(){

	$$("#home_action_buttons input").each(function(item) {
		item.addEvent('mouseover', function(e) {
			this.addClass('hover');
		});

		item.addEvent('mouseout', function(e) {
			this.removeClass('hover');
		});
	});

});