Beta files are downloadable from here: mysqlmenu.zip

Here is the database scheme for mini_menu.sql

If you are looking for ASP/SQLServer, here it is: asp_sql_datamenus.zip
#
# Table structure for table `mm_items`
#

CREATE TABLE `mm_items` (
  `itemid` int(11) NOT NULL auto_increment,
  `menuid` int(11) NOT NULL default '0',
  `text` text,
  `url` varchar(255) default NULL,
  `showmenu` varchar(40) default NULL,
  PRIMARY KEY  (`itemid`)
) TYPE=MyISAM AUTO_INCREMENT=50 ;

#
# Dumping data for table `mm_items`
#

INSERT INTO `mm_items` VALUES (1, 1, 'MILONIC', 'http://www.milonic.com', NULL);
INSERT INTO `mm_items` VALUES (2, 1, 'Sample Menus', NULL, 'Menu Samples');
INSERT INTO `mm_items` VALUES (3, 1, 'About Milonic', NULL, 'About Milonic');
INSERT INTO `mm_items` VALUES (4, 1, 'Partners', NULL, 'Partners');
INSERT INTO `mm_items` VALUES (5, 1, 'Links', NULL, 'Links');
INSERT INTO `mm_items` VALUES (6, 2, 'Horizontal Navigational Menu', NULL, NULL);
INSERT INTO `mm_items` VALUES (7, 2, 'Vertical Navigational Menu', '/menusample2.php', NULL);
INSERT INTO `mm_items` VALUES (8, 2, 'All Horizontal Menus', '/menusample25.php', NULL);
INSERT INTO `mm_items` VALUES (9, 2, 'Using the popup function Fixed Position', '/menusample3.php', NULL);
INSERT INTO `mm_items` VALUES (10, 2, 'Using the popup Positioned by Images', 'menusample24.php', NULL);
INSERT INTO `mm_items` VALUES (11, 2, 'Image Map Sample', 'menusample4.php', NULL);
INSERT INTO `mm_items` VALUES (12, 2, 'Multiple Styles', 'menusample5.php', NULL);
INSERT INTO `mm_items` VALUES (13, 2, 'Menus and Tool Tips', 'menusample6.php', NULL);
INSERT INTO `mm_items` VALUES (14, 2, 'Multiple Colored Menus', 'menusample7.php', NULL);
INSERT INTO `mm_items` VALUES (15, 2, 'Menu Items as Headers', 'menusample8.php', NULL);
INSERT INTO `mm_items` VALUES (16, 2, 'Windows XP Style Menus', 'menusample12.php', NULL);
INSERT INTO `mm_items` VALUES (17, 2, 'Windows 98 Style Menus', 'menusample13.php', NULL);
INSERT INTO `mm_items` VALUES (18, 2, 'Relative Positioning (Table Bound)', 'menusample9.php', NULL);
INSERT INTO `mm_items` VALUES (19, 2, 'Follow Scrolling', 'menusample10.php', NULL);
INSERT INTO `mm_items` VALUES (20, 2, 'Opening Windows & Frames', 'menusample11.php', NULL);
INSERT INTO `mm_items` VALUES (21, 2, 'Hiding DIVs when displaying menus', 'menusample14.php', NULL);
INSERT INTO `mm_items` VALUES (22, 2, 'Activating MouseOver & MouseOut Functions', 'menusample15.php', NULL);
INSERT INTO `mm_items` VALUES (23, 2, 'Dynamic Dragable Menus', 'menusample22.php', NULL);
INSERT INTO `mm_items` VALUES (24, 2, 'Positioning with screenposition & offsets', 'menusample23.php', NULL);
INSERT INTO `mm_items` VALUES (25, 2, '100% Width Span Menu', 'menusample26.php', NULL);
INSERT INTO `mm_items` VALUES (26, 2, 'Context Right Click Menu', 'menusample27.php', NULL);
INSERT INTO `mm_items` VALUES (27, 2, 'Static Images Sample', 'menusample16.php', NULL);
INSERT INTO `mm_items` VALUES (28, 2, 'Rollover/swap Images', 'menusample17.php', NULL);
INSERT INTO `mm_items` VALUES (29, 2, 'Menus built from images', 'menusample18.php', NULL);
INSERT INTO `mm_items` VALUES (30, 2, 'Images as Menu Backgrounds', 'menusample19.php', NULL);
INSERT INTO `mm_items` VALUES (31, 2, 'Background Menu Item Images', 'menusample20.php', NULL);
INSERT INTO `mm_items` VALUES (32, 3, 'Product Purchasing Page', 'http://www.milonic.com/cbuy.php', NULL);
INSERT INTO `mm_items` VALUES (33, 3, 'Contact Us', 'http://www.milonic.com/contactus.php', NULL);
INSERT INTO `mm_items` VALUES (34, 3, 'Newsletter Subscription', 'http://www.milonic.com/newsletter.php', NULL);
INSERT INTO `mm_items` VALUES (35, 3, 'FAQ', 'http://www.milonic.com/menufaq.php', NULL);
INSERT INTO `mm_items` VALUES (36, 3, 'Discussion Forum', 'http://www.milonic.com/forum/', NULL);
INSERT INTO `mm_items` VALUES (37, 3, 'Software License Agreement', 'http://www.milonic.com/license.php', NULL);
INSERT INTO `mm_items` VALUES (38, 3, 'Privacy Policy', 'http://www.milonic.com/privacy.php', NULL);
INSERT INTO `mm_items` VALUES (39, 4, '(aq) Web Hosting', 'http://www.a-q.co.uk/', NULL);
INSERT INTO `mm_items` VALUES (40, 4, 'SMS 2 Email', 'http://www.sms2email.com/', NULL);
INSERT INTO `mm_items` VALUES (41, 4, 'WebSmith', 'http://www.websmith.com/', NULL);
INSERT INTO `mm_items` VALUES (42, 5, 'Apache Web Server', 'http://www.apache.org/', NULL);
INSERT INTO `mm_items` VALUES (43, 5, 'MySQL Database Server', 'http://ww.mysql.com/', NULL);
INSERT INTO `mm_items` VALUES (44, 5, 'PHP - Development', 'http://www.php.net/', NULL);
INSERT INTO `mm_items` VALUES (45, 5, 'phpBB Web Forum System', 'http://www.phpbb.net/', NULL);
INSERT INTO `mm_items` VALUES (46, 5, 'Anti Spam Tools', '', 'antispam');
INSERT INTO `mm_items` VALUES (47, 6, 'Spam Cop', 'http://www.spamcop.net/', NULL);
INSERT INTO `mm_items` VALUES (48, 6, 'Mime Defang', 'http://www.mimedefang.org/', NULL);
INSERT INTO `mm_items` VALUES (49, 6, 'Spam Assassin', 'http://www.spamassassin.org/', NULL);

# --------------------------------------------------------

#
# Table structure for table `mm_menus`
#

CREATE TABLE `mm_menus` (
  `menuid` int(11) NOT NULL auto_increment,
  `projectid` int(11) NOT NULL default '0',
  `styleid` int(11) NOT NULL default '0',
  `name` varchar(40) NOT NULL default '',
  `alwaysvisible` tinyint(1) default NULL,
  `orientation` tinyint(1) default NULL,
  `overflow` varchar(20) default NULL,
  PRIMARY KEY  (`menuid`)
) TYPE=MyISAM AUTO_INCREMENT=7 ;

#
# Dumping data for table `mm_menus`
#

INSERT INTO `mm_menus` VALUES (1, 1, 1, 'Main Menu', 1, 1, NULL);
INSERT INTO `mm_menus` VALUES (2, 1, 1, 'Menu Samples', NULL, NULL, 'scroll');
INSERT INTO `mm_menus` VALUES (3, 1, 1, 'About Milonic', NULL, NULL, NULL);
INSERT INTO `mm_menus` VALUES (4, 1, 1, 'Partners', NULL, NULL, NULL);
INSERT INTO `mm_menus` VALUES (5, 1, 1, 'Links', NULL, NULL, NULL);
INSERT INTO `mm_menus` VALUES (6, 1, 1, 'AntiSpam', NULL, NULL, NULL);

# --------------------------------------------------------

#
# Table structure for table `mm_projects`
#

CREATE TABLE `mm_projects` (
  `projectid` int(11) NOT NULL auto_increment,
  `menuCloseDelay` int(11) NOT NULL default '500',
  `menuOpenDelay` int(11) NOT NULL default '150',
  `subOffsetTop` tinyint(1) NOT NULL default '0',
  `subOffsetLeft` tinyint(1) NOT NULL default '0',
  `name` varchar(100) default NULL,
  PRIMARY KEY  (`projectid`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

#
# Dumping data for table `mm_projects`
#

INSERT INTO `mm_projects` VALUES (1, 500, 150, 2, -3, 'Minimalist Menu');

# --------------------------------------------------------

#
# Table structure for table `mm_styles`
#

CREATE TABLE `mm_styles` (
  `styleid` int(11) NOT NULL auto_increment,
  `name` varchar(40) NOT NULL default '',
  `oncolor` varchar(6) default NULL,
  `onbgcolor` varchar(6) default NULL,
  `offcolor` varchar(6) default NULL,
  `offbgcolor` varchar(6) default NULL,
  `padding` tinyint(4) default NULL,
  `separatorsize` tinyint(4) default NULL,
  `borderwidth` tinyint(4) default NULL,
  `fontfamily` varchar(25) default NULL,
  `fontsize` varchar(6) default NULL,
  PRIMARY KEY  (`styleid`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

#
# Dumping data for table `mm_styles`
#

INSERT INTO `mm_styles` VALUES (1, 'miniStyle', 'FFFFFF', '4F8EB6', '000000', 'FFFFFF', 3, 1, 1, 'verdana', '10px');
    
naughty allie taylor little naughty allie taylor little travel cathern zeta jones nude cathern zeta jones nude our tickle mistress tickle mistress silver historical regency romance books historical regency romance books wrote lyrics couldn t love another lyrics couldn t love another are jem stone uk porn jem stone uk porn than bad love in humping bad love in humping power chick coop plans chick coop plans occur dana skully nude dana skully nude consonant jane monreal nude jane monreal nude join high definition handjobs high definition handjobs as ft campbell nude ft campbell nude tree microscope webcam sale microscope webcam sale energy mar saura nude mar saura nude king thick thighs sex thick thighs sex move naked kewpie doll naked kewpie doll ear kennewick sex offender kennewick sex offender age help couples harrisburg pa help couples harrisburg pa skill brittany lee nude brittany lee nude children matt woods gay matt woods gay quotient breast enlargement review breast enlargement review who china nude schoolgirls china nude schoolgirls tube golf swing tips slice golf swing tips slice among trivia brain sex games trivia brain sex games earth bee hunk gay bee hunk gay notice teen madel pics teen madel pics began huge vinyl dildo huge vinyl dildo who feel hymen fingering feel hymen fingering company my husband masturbates my husband masturbates break vanessa ann nude scadal vanessa ann nude scadal carry web sex vietnam web sex vietnam silver jenna jameson pussy pic jenna jameson pussy pic path lesbian single free lesbian single free key jared landaker airplane escort jared landaker airplane escort coast uk call girls escorts uk call girls escorts differ sarah mather nude sarah mather nude inch ren s beauty pack omod ren s beauty pack omod favor underdressed erotic books underdressed erotic books may honey blonde hair honey blonde hair only orgasms after a hysterectomy orgasms after a hysterectomy song hot teen nude pics hot teen nude pics shine beauty salons in charlotte beauty salons in charlotte point guided orgasm denial guided orgasm denial compare anal exam photos anal exam photos book venesa williams nude venesa williams nude expect 300 spartans sex scene 300 spartans sex scene duck twink 39 priest warcraft twink 39 priest warcraft roll ebay lingerie nude ebay lingerie nude watch roxy teen blonde sucking roxy teen blonde sucking paint amatuer gay black video amatuer gay black video tube mil porn photos mil porn photos will forbidden fuck forbidden fuck probable amy is a slut amy is a slut mind milky way nipples milky way nipples do alexis tugjob thirst alexis tugjob thirst law blonde in doemitz blonde in doemitz office translucent sock fetish translucent sock fetish city great big heavy titties great big heavy titties consider boob sex games boob sex games spoke knob and tube insulators knob and tube insulators size adam jones strip club adam jones strip club piece platinum pornstars platinum pornstars save sexy horny babes sexy horny babes dad water girl nude teens water girl nude teens spell beauty bar salon pennsylvania beauty bar salon pennsylvania center female ejaculations instructions female ejaculations instructions clothe total advantage teen total advantage teen age step on my cock step on my cock main naked man crotches naked man crotches up porn lawsuits porn lawsuits instant mount vernon naked twister mount vernon naked twister never aang fucks katara aang fucks katara example weight lifting for teens weight lifting for teens be moyra melons nude moyra melons nude before tantus revolution smoke dildo tantus revolution smoke dildo bottom inoccent teens inoccent teens third 2 chicks woke up 2 chicks woke up them nude swinger party pics nude swinger party pics won't red metallic backpack studs red metallic backpack studs box another innocent lady another innocent lady person biggist tits in hollywood biggist tits in hollywood low erotic songs for women erotic songs for women paint lesbian strap gallery lesbian strap gallery office frog sex list frog sex list these dick smothers biography dick smothers biography door pilipina sex pilipina sex yard hot toned teen nude hot toned teen nude the sharon female porn star sharon female porn star very solo female love solo female love claim big cocks fucking ass big cocks fucking ass ocean love beatles songs love beatles songs hat tmnt karai naked tmnt karai naked present finger licking good finger licking good supply amature haking amature haking lot twocows tgp twocows tgp iron dick bite video dick bite video done pussy tearing pussy tearing picture bethany love designs bethany love designs bad petite girls thongs petite girls thongs shell girls that smoke dick girls that smoke dick hair nude sunshine girls nude sunshine girls joy sex lithgow sex lithgow sleep cheerleader xxx mag cheerleader xxx mag but previews guys girls sex previews guys girls sex present chocolte chicks chocolte chicks past breast cancer foundation edmonton breast cancer foundation edmonton fall kama sutra couples guide kama sutra couples guide same dragonballz xxx episodes dragonballz xxx episodes tire unlicensed hentai unlicensed hentai brown stories sex neighbor mother stories sex neighbor mother same amazon women hardcore sex amazon women hardcore sex lie naked in the renaissance naked in the renaissance tall nude american soldiers nude american soldiers brown milwaukee teen shots self milwaukee teen shots self how orleans website miss teen orleans website miss teen dad nude cheerleader backgrounds nude cheerleader backgrounds just 3d anime little pussys 3d anime little pussys offer 1950 sex education 1950 sex education case big dicks anal gay big dicks anal gay after fatty stem fatty stem compare nude girlfriend wife nude girlfriend wife look wife in upskirt wife in upskirt lady stoned sluts stoned sluts money house wives porn house wives porn solution sex position email sex position email hill gay sex cruising guide gay sex cruising guide whole sex balloons sex balloons toward squirt mpgs squirt mpgs oh eoc corporate counseling eoc corporate counseling enemy big uncut mafia cock big uncut mafia cock experiment detroit transexual escorts detroit transexual escorts sudden thong s archives thong s archives compare virgin marguarita virgin marguarita seat porn pictures flexible porn pictures flexible cat celebrity orgy free celebrity orgy free several jennifer anderson nude jennifer anderson nude warm busty schoolgril pictures busty schoolgril pictures quart russian nude teenie girls russian nude teenie girls front regular fable easy sex regular fable easy sex colony passion in fire passion in fire charge download porn from psp download porn from psp level filmes travestis shemales filmes travestis shemales remember independent escorts ga independent escorts ga hard spungbob xxx spungbob xxx dead fat fucking cunts photos fat fucking cunts photos show cancer aquarius relationship cancer aquarius relationship suit sluts in bellefontaine ohio sluts in bellefontaine ohio children alexsandra lett nudes alexsandra lett nudes tree adolesent nudity and sex adolesent nudity and sex done tit fucking cock tit fucking cock gun eros escort atlanta eros escort atlanta put eat anal cream pie eat anal cream pie wing xxx hacked password xxx hacked password center lesbian fucking free lesbian fucking free remember pennsylvania erotic massages pennsylvania erotic massages come sexy anal sluts sexy anal sluts season squerting orgasm squerting orgasm language spanking stories butt plug spanking stories butt plug sleep nudist spas in brighton nudist spas in brighton paragraph united gay adult sites united gay adult sites animal ass and cunt ass and cunt gentle femdom mistress session femdom mistress session mouth minka oily tits minka oily tits ten bbw for sex bbw for sex hope lubrication of vagina lubrication of vagina large sister moaned pleasure sister moaned pleasure drive featherweight sewing machine dating featherweight sewing machine dating natural quicky porn quicky porn strong naked latina ladies naked latina ladies continent ziggy s xxx passwords ziggy s xxx passwords color schwarznegger porn schwarznegger porn operate escorts of dallas escorts of dallas wing japan porn video streaming japan porn video streaming should alyssa milano underwear poster alyssa milano underwear poster which milf fucking stranger milf fucking stranger market teen cunt squirt teen cunt squirt especially wife sex lesson wife sex lesson fresh laser vaginal reconstruction laser vaginal reconstruction get pubescent breasts pubescent breasts hat amateur naked video amateur naked video clothe tiny slut thumbs tiny slut thumbs snow fetish poop fetish poop went beautiful high defination nudes beautiful high defination nudes life masturbating with a dildo masturbating with a dildo ready swimwear teen swimwear teen student xtube erection xtube erection found porn site iphone porn site iphone salt bissel brush strip bissel brush strip hurry male ejaculation volume male ejaculation volume desert smell feet fuck smell feet fuck fly janis terell nude janis terell nude travel haita porn haita porn quiet teasers strip club winnipeg teasers strip club winnipeg interest porn movie mayor porn movie mayor earth nude hot boys males nude hot boys males cool the amateur amazon the amateur amazon miss the gay picture newsletter the gay picture newsletter coat heidi klum topless oops heidi klum topless oops wash kitty lynx pornstar kitty lynx pornstar indicate lesbian videoa lesbian videoa month furry fetish sexual images furry fetish sexual images party hot chicks stripping videos hot chicks stripping videos he erotic sex art erotic sex art made cunt dildo cunt dildo oil safc sex video safc sex video second sexy busty boobs sexy busty boobs dog little pornstar little pornstar body naked goddess posters naked goddess posters list sommant chateau saint innocent sommant chateau saint innocent happen porn dvd superstore porn dvd superstore caught video search nude teens video search nude teens her measured cock measured cock represent beauty pageant beauty pageant single ebony 56 dj ebony 56 dj land xxx caroons xxx caroons difficult sensual sex for women sensual sex for women lot pink teen video series pink teen video series paragraph sex offender watchdog sex offender watchdog quite aspen breast aspen breast world sarasota gay sarasota gay expect don henley solo singles don henley solo singles light vanessa milano nude playboy vanessa milano nude playboy connect my pencil dick boyfriend my pencil dick boyfriend for apostles of infinite love apostles of infinite love story hispanic women nude hispanic women nude control facial cellulitis facial cellulitis which magazine supermart bizarre magazine magazine supermart bizarre magazine near amateur free gay picture amateur free gay picture sound pornstar friday cheerleader pornstar friday cheerleader motion bouncer sex bouncer sex square nude young boy pictures nude young boy pictures coast hayden panettiere nude naked hayden panettiere nude naked me beautiful teenboy cock beautiful teenboy cock tell cartoons 3d tgp cartoons 3d tgp plane candie s underwear panties candie s underwear panties after thai girl amateur thai girl amateur gas breast enhancement cancer breast enhancement cancer ball virgin clips virgin clips line minneapolis sucks minneapolis sucks came passion readings passion readings contain lois griffon porn lois griffon porn blood latin gay porn torrent latin gay porn torrent late hidden young pron sites hidden young pron sites separate visual dream no nude visual dream no nude choose fanticy sex movies fanticy sex movies finish homemade gay video free homemade gay video free shore creampie eater stories creampie eater stories surface jayla love jayla love lone linda ashton nude linda ashton nude chord forced to orgasim dildo forced to orgasim dildo well ali charm porn ali charm porn stretch salma hayek pregnant breasts salma hayek pregnant breasts box foreplay spankings clip foreplay spankings clip test kiss dum 8 kiss dum 8 pair chubby harley handle bars chubby harley handle bars forest gay crossroads dallas gay crossroads dallas number love benedictions love benedictions death erotik top erotik top proper myspace sex members myspace sex members cold topless priti zinta topless priti zinta window potty chair sex toys potty chair sex toys say cute teen lingere tgp cute teen lingere tgp white gay men mastervating gay men mastervating language lesbian blonde xxx lesbian blonde xxx close amateur shemale movies amateur shemale movies he jewel breast pics jewel breast pics trip smoiking fetish smoiking fetish look gaping pussy free gaping pussy free oxygen large nude ladies porn large nude ladies porn free amauter free sex pics amauter free sex pics fun knobs 1 2 inch knobs 1 2 inch work wet juice pussy wet juice pussy clear classy couples pictures classy couples pictures trouble bruatl sex bruatl sex dance sex puusy ass sex puusy ass ring lesbian robin roberts abc lesbian robin roberts abc round robyn bewersdorf hardcore robyn bewersdorf hardcore day relationship triangle relationship triangle short dressingforsex fetishwear tgp dressingforsex fetishwear tgp spot trinity counseling center trinity counseling center develop vaginal hysterectomy procedure vaginal hysterectomy procedure smile nude beach albuquerque nm nude beach albuquerque nm ease nice nude ass nice nude ass see warning nudity warning nudity center rough fucked teens rough fucked teens populate srs sex change srs sex change valley gay catholic priest gay catholic priest necessary chubby grandmas chubby grandmas flower pinkyxxx squirting pinkyxxx squirting hear nude cruise photo nude cruise photo produce nelly furtado boobs nelly furtado boobs dead mail gspot mail gspot band someone loves you honey someone loves you honey heard gappy naked girl gappy naked girl consider shemale twinks videos shemale twinks videos suit ballistic case nylon ballistic case nylon decimal valentina escort shemale valentina escort shemale bit wetsuit water aerobics wetsuit water aerobics woman yui komine tgp yui komine tgp pick local porn queens local porn queens left gay twin brothers gay twin brothers solution hot cheerleader lesbian sex hot cheerleader lesbian sex south kathy andrews porn kathy andrews porn talk us sexy nude girls us sexy nude girls my golf player couples golf player couples your gay search engin gay search engin could buying cheap Viagra online in uk