//li with fade class
//$("ulmenus_xxx001002 a").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
function hover_in(this_a)
{
$(this_a).animate(
{'background-color': '#dfdfdf'},
100);
}

function hover_out(this_a)
{
$(this_a).animate(
{'background-color': 'white'}
, 100);
}
