var Menu = {

	show : function (id) {
        //$('#'+id).width($('#'+id).parent().width());
        $('#'+id).show();
        $('#'+id).css('left', $('#'+id).parent().offset().left);
	},

	hide : function (id) {
        $('#'+id).hide();
    }


};