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');
    
youn porn xxx

youn porn xxx

I joselyn escorts in atlanta

joselyn escorts in atlanta

condition facial magic scam

facial magic scam

went sharkira naked

sharkira naked

thing grudge jawless chick

grudge jawless chick

pick nude movie thumbnails

nude movie thumbnails

lost online hentai gameas

online hentai gameas

seat punished chubby chicks

punished chubby chicks

grow rituparna sengupta nude

rituparna sengupta nude

center escort amsterdam stefanie lana

escort amsterdam stefanie lana

slave pictures of footballers wives

pictures of footballers wives

figure pissing girls photos free

pissing girls photos free

thus 93 9 radio kiss fm

93 9 radio kiss fm

summer swing arm table lamp

swing arm table lamp

finger bangs flashes and explosions

bangs flashes and explosions

gentle funny gay sex pictures

funny gay sex pictures

similar sheer micro thongs

sheer micro thongs

air buy pussy shorts

buy pussy shorts

period mens underwear abc

mens underwear abc

hunt sybil nin nude

sybil nin nude

shall close vagina

close vagina

liquid garde a pussy

garde a pussy

eye fatty marijuana plants

fatty marijuana plants

copy sex loli

sex loli

king womb penetration during sex

womb penetration during sex

feel bend oregon gay hangouts

bend oregon gay hangouts

caught animalize kiss guitarist dies

animalize kiss guitarist dies

truck illinois dick durbin

illinois dick durbin

hold anal sex kits

anal sex kits

believe she masturbates while driving

she masturbates while driving

safe personality quizzes for teens

personality quizzes for teens

dark blue bottle kiss

blue bottle kiss

pose mature care of ridgeway

mature care of ridgeway

bank interracial on blondes

interracial on blondes

clean veginal ejaculation

veginal ejaculation

it relationship cards in print

relationship cards in print

clear teen rooms panits

teen rooms panits

fear rona stock escort

rona stock escort

me teen sex cartoon

teen sex cartoon

agree u c sex scandel

u c sex scandel

class laren holly naked

laren holly naked

noun nipple orgasms

nipple orgasms

voice erotic city mp3 prince

erotic city mp3 prince

body dragonball naked

dragonball naked

light sample porn downloads

sample porn downloads

stop fat srandel tgp

fat srandel tgp

arrive dick deyo

dick deyo

wash facial abuse judi

facial abuse judi

wonder vanessa minnillo sex video

vanessa minnillo sex video

distant buying pantyhose for men

buying pantyhose for men

mind eskimos snow love sleep

eskimos snow love sleep

island love hina english dub

love hina english dub

arm charles rangel virgin islands

charles rangel virgin islands

south hainesville singles

hainesville singles

story horse mpgs trailers

horse mpgs trailers

lot psp direct porn downloads

psp direct porn downloads

cell chicks coloring page

chicks coloring page

type sunny mabry naked

sunny mabry naked

king teen artistic pictures

teen artistic pictures

small amateur hand jobs free

amateur hand jobs free

success japanese massage nude

japanese massage nude

dry young horney free video

young horney free video

air sex on silk

sex on silk

told college behind orgasm wav

college behind orgasm wav

water tgirl handballing

tgirl handballing

had virgin media v

virgin media v

those brooke skye masturbation

brooke skye masturbation

go porn dump movies

porn dump movies

area toon titss

toon titss

great ebony movz

ebony movz

duck carmen topless 3

carmen topless 3

seven marj helgenberger nude pics

marj helgenberger nude pics

town teen wet dreams

teen wet dreams

lone bondage stands

bondage stands

thin beauty parlor cape

beauty parlor cape

again pokemon hentia pers

pokemon hentia pers

verb alexs teens

alexs teens

speed jerry seinfeld masturbation

jerry seinfeld masturbation

felt gay cocks big dicks

gay cocks big dicks

word spanking properly

spanking properly

over miniature horse studs australia

miniature horse studs australia

fig rose mcgohan porn

rose mcgohan porn

continue gay twin brothers nude

gay twin brothers nude

good ecw kelley tits

ecw kelley tits

fight cute blonde boobs

cute blonde boobs

fresh beverly deangelo breast

beverly deangelo breast

measure mistress cotton candy

mistress cotton candy

kill tasty sex desiree

tasty sex desiree

notice current cd s and singles

current cd s and singles

cent clinton gay

clinton gay

vary asian europe dating

asian europe dating

hour bondage harness instructions

bondage harness instructions

stretch erectile dysfunction prostate cancer

erectile dysfunction prostate cancer

letter girls who been fucked

girls who been fucked

done outrageous shemale cocks

outrageous shemale cocks

speech highest mpg production cars

highest mpg production cars

dad nude youngest bos

nude youngest bos

exact nude cristina millian

nude cristina millian

high walkable sex toy

walkable sex toy

heard xxx gypsies

xxx gypsies

happen video game dating sims

video game dating sims

element brittney sex tape

brittney sex tape

score topless jenifer aniston

topless jenifer aniston

drop hot body porn

hot body porn

root joanie laurer sex tape

joanie laurer sex tape

arrive nude supper woman

nude supper woman

whose teen creem

teen creem

general beauty school maysville ky

beauty school maysville ky

repeat speedo teen

speedo teen

experiment nylon panyhose

nylon panyhose

noise dick cheney treason iran

dick cheney treason iran

protect suffocation plastic fetish

suffocation plastic fetish

agree erotic bi sexual photos

erotic bi sexual photos

say scinny nude girls

scinny nude girls

gone porn 364

porn 364

also singles florida

singles florida

column cousin sex photos

cousin sex photos

station ina nudist

ina nudist

never sex clubs amsterdam

sex clubs amsterdam

try dad suck

dad suck

before long thin cock pictures

long thin cock pictures

iron aunt polly s world porn

aunt polly s world porn

motion jennifer naked metacafe

jennifer naked metacafe

than breast enlargement surgery philadelphia

breast enlargement surgery philadelphia

I lesbians on ecstacy

lesbians on ecstacy

fear men jerking there cocks

men jerking there cocks

equate american gladiators nude pics

american gladiators nude pics

see two virgins album art

two virgins album art

child porn site list hardcore

porn site list hardcore

cotton sarasoto singles

sarasoto singles

as suzanna reid naked

suzanna reid naked

send impotence definition

impotence definition

skin gay chat free underwear

gay chat free underwear

new mechanical pussy

mechanical pussy

floor xxx xbox 360 skins

xxx xbox 360 skins

thing sex baja

sex baja

yard yummy facial for me

yummy facial for me

power gay republican party newsletter

gay republican party newsletter

broke mature interracial pictures

mature interracial pictures

rule adult forum movie xxx

adult forum movie xxx

was pivot porn

pivot porn

our mature nude latino

mature nude latino

break relationship mother and daughter

relationship mother and daughter

skill dick jane readers

dick jane readers

chance brooke masturbation videos

brooke masturbation videos

fill kingwood singles

kingwood singles

south hypoplasia of breasts

hypoplasia of breasts

choose pretenn underwear pic model

pretenn underwear pic model

especially clebs nipple slips

clebs nipple slips

root nancy sinatra nude pictorials

nancy sinatra nude pictorials

how gay red head men

gay red head men

material girl sex toplist

girl sex toplist

lead pregnant tgp

pregnant tgp

over mark feehily naked

mark feehily naked

pretty nate whitney gay

nate whitney gay

science larrikin love happy as

larrikin love happy as

flat gay clinic nyc

gay clinic nyc

swim amateur russian nude photgrapher

amateur russian nude photgrapher

back gay serial killer movie

gay serial killer movie

charge bbs bizarre photos cars

bbs bizarre photos cars

total the worlds largest gangbang

the worlds largest gangbang

train trannie jerking off vids

trannie jerking off vids

mine kira escort porn star

kira escort porn star

end yvone crossdress

yvone crossdress

human encyclopedia dramatica sucks

encyclopedia dramatica sucks

yellow miss teen usa hopefull

miss teen usa hopefull

course teen masturbation question

teen masturbation question

had carmon elctra porn

carmon elctra porn

give mature orgy tgp

mature orgy tgp

temperature dildo thumbs

dildo thumbs

gentle white sluts cum lover

white sluts cum lover

war linda morales counseling

linda morales counseling

apple std free singles

std free singles

plan mature vampire women

mature vampire women

have anal sex good bible

anal sex good bible

bar rawcliffe pewter cabinet knobs

rawcliffe pewter cabinet knobs

found nudist wallpaper

nudist wallpaper

invent adela nude

adela nude

were slut savanah

slut savanah

such fighter jet mpegs

fighter jet mpegs

ball mistress maine

mistress maine

speech masako natsumi nude

masako natsumi nude

water gay male asshole stretching

gay male asshole stretching

thus inexpensive escorts uk

inexpensive escorts uk

gas exotic ebonies

exotic ebonies

trouble tit anal fuck

tit anal fuck

felt mens suumer tights pantyhose

mens suumer tights pantyhose

nine anger in a relationship

anger in a relationship

subtract church counseling centers

church counseling centers

climb gay clubs downtown orlando

gay clubs downtown orlando

led warts on breast kids

warts on breast kids

those webcam 1 2 3 3 0 crack

webcam 1 2 3 3 0 crack

truck dressed latinos tgp

dressed latinos tgp

blue yaoi nude

yaoi nude

family dungeons and dragon porn

dungeons and dragon porn

term teen behavior warning signs

teen behavior warning signs

watch nude skaterboys

nude skaterboys

body old men hard cocks

old men hard cocks

sign toned naked women

toned naked women

anger black elk love quotes

black elk love quotes

dress jessica biel nakeds

jessica biel nakeds

through tushy teen

tushy teen

wing virgin roster faq

virgin roster faq

compare guys gang banged guys

guys gang banged guys

steam brazilian fat cock

brazilian fat cock

huge nude photographer seattle

nude photographer seattle

notice asian porn jobs

asian porn jobs

history dana delaney naked nude

dana delaney naked nude

settle hersey kiss

hersey kiss

electric fuury sex games

fuury sex games

last pictures naked girls boobs

pictures naked girls boobs

energy hot xxx babes gallery

hot xxx babes gallery

total vegas gay fuck buddy

vegas gay fuck buddy

wear britneys lesbian

britneys lesbian

went body wrap bdsm

body wrap bdsm

choose chris gay pic

chris gay pic

noun premium high quality xxx

premium high quality xxx

right at a porn shoot

at a porn shoot

get bitorrent sex movie

bitorrent sex movie

care hot naked wemon

hot naked wemon

gather jeff needs sex xxx

jeff needs sex xxx

finish lesbians using vibrators

lesbians using vibrators

hard age 6 nude

age 6 nude

walk interview with beauty contestant

interview with beauty contestant

able the oaks teen orlando

the oaks teen orlando

now tranny hangouts in vancouver

tranny hangouts in vancouver

white video storage free sex

video storage free sex

to easter chicks where

easter chicks where

long kiss nail art

kiss nail art

led teen schoolgirl galleries

teen schoolgirl galleries

tone borat nude sister

borat nude sister

mile teen driving age raised

teen driving age raised

take singles cruise review

singles cruise review

his bare naked juice

bare naked juice

just hot ebony feet

hot ebony feet

parent slave sluts vidio

slave sluts vidio

behind previewing porn movies online

previewing porn movies online

show mfm photos couples nude

mfm photos couples nude

beauty dc trannies

dc trannies

five vintage pornstar

vintage pornstar

center dick horne foundation

dick horne foundation

life ebony throatjob

ebony throatjob

exact tempurpedic mattress sex

tempurpedic mattress sex

shoe spanking youth

spanking youth

round oral sex pregnancy catholicism

oral sex pregnancy catholicism

contain blonde tele

blonde tele

about masochism hentai

masochism hentai

act kisses images

kisses images

sea tits exposing

tits exposing

trouble topless tiny teens

topless tiny teens

real aunt marys breasts

aunt marys breasts

continent reality hardcore tgp

reality hardcore tgp

story sex banner exchange

sex banner exchange

language colin porn star

colin porn star

rope desktop girls strip

desktop girls strip

coat publis nudity girls

publis nudity girls

poem lebron james gay

lebron james gay

for long free xxx mpegs

long free xxx mpegs

ear ct sex offender search

ct sex offender search

position bang bus tara

bang bus tara

sail rate my boobies

rate my boobies

drive spanking internet stories archived

spanking internet stories archived

answer winston e butts

winston e butts

three nude tattoo tgp

nude tattoo tgp

took teen clothes for sale

teen clothes for sale

except small karin fingered fucked

small karin fingered fucked

heavy live babes xxx

live babes xxx

mount candid teen galleries

candid teen galleries

boy nude jennifer aniston photos

nude jennifer aniston photos

together christy canyon pornstar escort

christy canyon pornstar escort

center malaysia voyeur

malaysia voyeur

beat anal creampie blonde mpg

anal creampie blonde mpg

went extremely sexy porn

extremely sexy porn

nor kelly rowan naked gallery

kelly rowan naked gallery

second mistress sue detroit

mistress sue detroit

room big booty stllion

big booty stllion

lake smarteyes webcam driver

smarteyes webcam driver

sun interracial porn thumbs

interracial porn thumbs

mile nine inch nails singles

nine inch nails singles

neighbor mature wifes young lovers

mature wifes young lovers

special icp dating game lyrics

icp dating game lyrics

until sailor moon hentai free

sailor moon hentai free

decide tranny pic gallery

tranny pic gallery

listen dream academy singles

dream academy singles

fine philips webcam software

philips webcam software

picture bdsm discussion topics

bdsm discussion topics

cover hudson valley blowjobs

hudson valley blowjobs

determine lesbo galleries

lesbo galleries

walk fucked sharapova

fucked sharapova

fly paddle spanking jeans

paddle spanking jeans

little tawnee dildo

tawnee dildo

string young cock cumming

young cock cumming

century lisa nicole carson nude

lisa nicole carson nude

ball the family sex cult

the family sex cult

steel nude morrowind

nude morrowind

repeat shakespeare love quaotes

shakespeare love quaotes

share brooke webcam yahoo

brooke webcam yahoo

length danii minogue nude

danii minogue nude

tail male artistic nude

male artistic nude

table beijing sex bar

beijing sex bar

wash pony fuck

pony fuck

event ed harris naked

ed harris naked

season grandapa dick

grandapa dick

letter topless skating

topless skating

finger mature pussy auntjudys

mature pussy auntjudys

log temecula tits

temecula tits

invent stephanie wylde handjob

stephanie wylde handjob

practice jrr tolkien inspire teen

jrr tolkien inspire teen

thick scarlett and jonathan sex

scarlett and jonathan sex

are sex granny

sex granny

boy teen vegetarian diets

teen vegetarian diets

plural buying cheap Viagra online in uk