$(document).ready(function() {

$('.ro_on').each(function(){
	var bgColor = $(this).css('backgroundColor');
	$(this).hover(function(){
		$(this).animate({
			backgroundColor:'#eeeeee'
		},{'duration':300,'queue':false});
	},function(){
		$(this).animate({
			backgroundColor:bgColor
		},{'duration':300,'queue':false});
	});
});

})

