function overnav(dom){
                var my = dom.find('ul');
                var my_w = dom.outerWidth(true);
                var my_h = dom.outerHeight(true) - 5;
		if(my.length!=0){		
	                my.css({
					    "position" : "absolute",
					    "display" : "block",
					    "height" : "auto",
					    "left" : "0px",
					    "top" : my_h,
					    "width" : my_w
					});
		}
}
function outnav(dom){
    var my = dom.find('ul');
	    my.css({
			"display" : "none"
		});
}
