if (TransMenu.isSupported()) {

//==================================================================================================
// create a set of dropdowns
//==================================================================================================
// the first param should always be down, as it is here
//
// The second and third param are the top and left offset positions of the menus from their actuators
// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
// something like -5, 5
//
// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
// of the actuator from which to measure the offset positions above. Here we are saying we want the 
// menu to appear directly below the bottom left corner of the actuator
//==================================================================================================
var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

//==================================================================================================
// create a dropdown menu
//==================================================================================================
// the first parameter should be the HTML element which will act actuator for the menu
//==================================================================================================


/* STYLE & BEAUTY Menu */
var mnu0 = ms.addMenu(document.getElementById("mnuItemstyle"));
mnu0.addItem("HIGH-STREET MAKE-UP TESTING", "styleandbeauty1.html");
mnu0.addItem("SIMPLE BEAUTY RULES", "styleandbeauty2.html");
mnu0.addItem("ACCESSORIES: FINISHING TOUCHES", "styleandbeauty3.html");



/* FASHION Menu */
var mnu1 = ms.addMenu(document.getElementById("mnuItemfashion"));
mnu1.addItem("EDITORIAL - INDULGE", "fashion1.html");
mnu1.addItem("ADEOLA ARIYO (TOP AFRICAN MODEL): INTERVIEW", "fashion2.html");
mnu1.addItem("WHAT THE PUBLIC IS WEARING", "fashion3.html");
mnu1.addItem("NIGERIA'S HOTTEST DESIGNER: DEOLA SAGOE", "fashion4.html");
mnu1.addItem("FASHION & STYLE FOR THE WEEK", "fashion5.html");
mnu1.addItem("AFRICAN AMERICANS ROCKING THE RED CARPET", "fashion6.html");
mnu1.addItem("WHAT'S HOT & WHAT'S NOT CUTTING IT", "fashion7.html");


/* MANnequin Menu */
var mnu2 = ms.addMenu(document.getElementById("mnuItemMANnequin"));
mnu2.addItem("SUITS: WHERE & HOW", "mannequin1.html");
mnu2.addItem("MALE ESSENTIALS: WHAT EVERY MALE NEEDS", "mannequin2.html");
mnu2.addItem("WHY I?", "mannequin3.html");
mnu2.addItem("NAETO C INTERVIEW", "mannequin4.html");


/* EDITORIALS Menu */
var mnu3 = ms.addMenu(document.getElementById("mnuItemeditorials"));
mnu3.addItem("THE DYING NIGERIAN", "editorials1.html");
mnu3.addItem("DIANE'S WORD", "editorials2.html");
mnu3.addItem("HOW TO GET WHAT'S YOURS: MONEY & MEN", "editorials3.html");
mnu3.addItem("PLASTIC SURGERY: A DO OR DON'T", "editorials4.html");
mnu3.addItem("YOUNG NIGERIAN ENTREPRENEUR TO WATCH OUT FOR: NIKE ADEMUYIWA", "editorials5.html");
mnu3.addItem("TO FIX OR NOT TO FIX", "editorials6.html");


/* LOVE, LIFE & YOU Menu */
var mnu4 = ms.addMenu(document.getElementById("mnuItemlovelifeyou"));
mnu4.addItem("TO BE OR NOT TO BE: IS HE RIGHT FOR YOU", "love1.html");
mnu4.addItem("QUESTIONS & ANSWERS: MALE", "love2.html");
mnu4.addItem("DEAR DIARY: MY RELATIONSHIPS", "love3.html");




/* EVENTS Menu */
var mnu6 = ms.addMenu(document.getElementById("mnuItemevents"));
mnu6.addItem("PINK & RUFFLES", "events1.html");
mnu6.addItem("STYLE ME UP", "events2.html");
mnu6.addItem("ACTION AID CHARITY FASHION SHOW", "events3.html");
mnu6.addItem("TAXI...JOURNEY BEGINS HERE", "events4.html");

/* CONTACT US Menu */
var mnu7 = ms.addMenu(document.getElementById("mnuItemcontactus"));





//==================================================================================================
// write drop downs into page
//==================================================================================================
// this method writes all the HTML for the menus into the page with document.write(). It must be
// called within the body of the HTML page.
//==================================================================================================
TransMenu.renderAll();
}