/*
var CHERRY = {
	init: function(){
		alert('hit');
		alert($$('#nav table').length);
		$$('#nav table').each(function(t){
			t.hide();
			t.up('a').observe('mouseover',function(event){
				Event.element(event).down('table').show();
			});
			table.up('a').observe('mouseout',function(){
				Event.element(event).down('table').hide();
			});
		});
	}
};
document.observe('dom:loaded',CHERRY.init);
*/
