   function show(obj) {
                       if (document.getElementById(obj).style.display == 'none') document.getElementById(obj).style.display = 'block';
                       else document.getElementById(obj).style.display = 'none';
                      }
	function showA(obj) {
		jQuery("#"+obj).show("slow");
	}
	
	function showB(obj) {
		//jQuery("#"+obj).hide();
	}
	
$(document).ready(function($){
	$(".menu > div").hover(function() {
		$(this).find("#menu_up").fadeIn("fast");
	},function() {
		$(this).find("#menu_up").fadeOut("fast");
	});
});
