if (TransMenu.isSupported()) {
  TransMenu.updateImgPath('jsmenu/');
  var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);
  
  TransMenu.subpad_x = 0;
  TransMenu.subpad_y = 0;
  
  TransMenu.dingbatSize = 1;                            // size of the dingbat (square shape assumed)
  TransMenu.menuPadding = 5;                             // padding between menu border and items grid
  TransMenu.itemPadding = 10;                             // additional padding around each item

  document.getElementById("menu1").onmouseover = function() {
	ms.hideCurrent();
  }

  var tmenu1 = ms.addMenu(document.getElementById("menu1"));
  tmenu1.addItem("New Peugeot Models", "/new.html", 0, 0);
  tmenu1.addItem("Demonstrator Smart Buys", "/cars/demo.asp", 0, 0);
  tmenu1.addItem("Used Vehicles", "/cars/preowned.asp", 0, 0);
  tmenu1.addItem("Download Peugeot Brochures", "/brochures.html", 0, 0);
  tmenu1.addItem("View Current Offers", "/currentoffers.html", 0, 0);
  tmenu1.addItem("Schedule an Appointment", "/contact.html", 0, 0);
  tmenu1.addItem("Email a No Obligation Enquiry", "/contact.html#enquiry", 0, 0);

  var tmenu1 = ms.addMenu(document.getElementById("menu2"));
  tmenu1.addItem("Schedule My Peugeot Service", "/service.html", 0, 0);
  tmenu1.addItem("Finance & Insurance Options", "/financeinsurance.html", 0, 0);
  tmenu1.addItem("Peugeot Parts & Accessories", "/parts.html", 0, 0);
  tmenu1.addItem("Peugeot for Small Business", "/fleet.html", 0, 0);
  tmenu1.addItem("Peugeot Warranty", "/warranty.html", 0, 0);
  tmenu1.addItem("Peugeot Extended Warranty", "/warranty.html#extended", 0, 0);
  tmenu1.addItem("Owners' Information", "/ownersinfo.html", 0, 0);
  tmenu1.addItem("Car Care Options", "/carcare.html", 0, 0);
  tmenu1.addItem("Value My Car", "/valuemycar.html", 0, 0);

  var tmenu1 = ms.addMenu(document.getElementById("menu3"));
  tmenu1.addItem("Welcome Letter", "/welcome.html", 0, 0);
  tmenu1.addItem("Peugeot Careers", "/careers.html", 0, 0);
  tmenu1.addItem("Media & Interactive", "/media.html", 0, 0);
  tmenu1.addItem("My Rewards", "/myrewards.html", 0, 0);
  tmenu1.addItem("Contact Information", "/contact.html", 0, 0);
  tmenu1.addItem("Map & Driving Directions", "/contact.html#map", 0, 0);
  
  TransMenu.renderAll();
}

init1=function(){TransMenu.initialize();}
if (window.attachEvent) {
  window.attachEvent("onload", init1);
}
else {
  TransMenu.initialize();
}