$(function() {	
	$("#moving").hover(
    function() {$('ul', $(this)).show();},
    function() {$('ul', $(this)).hide();}
	);
	
	$("#storage").hover(
    function() {$('ul', $(this)).show();},
    function() {$('ul', $(this)).hide();}
	);
});
