
function insertMedia()
{
for( var k = 0, l = arguments.length; k < l; k++ )
{
document.write( arguments[k] );
}
}
function insertMedia2( node_id, string )
{
var flashNode = document.getElementById( node_id );
flashNode.innerHTML = string;
}
$(document).ready(function(){
$("#topmenu-firstlevel-position").delegate("li", "mouseenter", function(){
if($(this).hasClass("selected")){
return;
}
$(this).stop().animate({
"bottom": "-2px"
},
{
"duration": 100
});
})
.delegate("li", "mouseleave", function(){
if($(this).hasClass("selected")){
return;
}
$(this).stop().animate({
"bottom": "-9px"
},
{
"duration": 300
});
});
});

