$(function(){
$(".menu_open02").click(function(ev) {
$(this).nextAll().each(function(){
$(this).slideToggle("fast");
});
} );
});



$(function(){
$(".menu_open").click(
function(ev) {
$(this).next().slideToggle('fast');
}
);
});
function openChildMenu(ID){
if($('#f'+ID).length){
$('#f'+ID).next().slideDown(0);
}
}
function closeChildMenu(ID){
if($('#f'+ID).length){
$('#f'+ID).next().slideDown(0);
}
}
