function productmenus()
{
var entries, divs=[];

entries = [
new MenuItem('#', 'Angioplasty', 'angioplasty'),
new MenuItem('#', 'Hemodialysis Access Grafts', 'hemo'),
new MenuItem('#', 'Peripheral Bypass Grafts', 'peri'),
new MenuItem('#', 'Stents', 'stent'),
new MenuItem('#', 'Stent Grafts', 'stentgraphs'),
new MenuItem('#', 'Vena Cava Filters', 'vena')
];
divs[0] = new MenuDiv('products', 134, 208, entries);

entries = [
new MenuItem('product.php?p=2', 'Atlas&reg; PTA Dilatation Catheter'),
new MenuItem('product.php?p=129', '<span class="tm-title">Conquest</span>&reg; Dilatation Catheter'),
new MenuItem('product.php?p=139', '<span class="tm-title">Dorado</span>&reg; PTA Dilatation Catheter'),
new MenuItem('product.php?p=143', '<span class="tm-title">Rival</span>&reg; PTA Dilatation Catheter'),
new MenuItem('product.php?p=7', '<span class="tm-title">Ultraverse</span>&reg; PTA Dilatation Catheter')
];
divs[3] = new MenuDiv('angioplasty', 0, 0, entries, divs[0]);

entries = [
new MenuItem('product.php?p=8', '<span class="tm-title">Carboflo</span>&reg; Vascular Graft'),
new MenuItem('product.php?p=9', '<span class="tm-title">CenterFlex</span>&#153; Graft'),
new MenuItem('product.php?p=87', '<span class="tm-title">Venaflo</span>&reg; II Vascular Grafts'),
new MenuItem('product.php?p=11', '<span class="tm-title">Venaflo</span>&reg; Vascular Graft'),
new MenuItem('product.php?p=85', 'AV Access Sheath Tunneler Set'),
new MenuItem('product.php?p=10', 'Kelly-Wick Tunneler Set')
];
divs[10] = new MenuDiv('hemo', 0, 0, entries, divs[0]);

entries = [
new MenuItem('product.php?p=43', '<span class="tm-title">Dynaflo</span>&reg; Bypass Graft'),
new MenuItem('product.php?p=14', 'PV Sheath Tunneler Set'),
new MenuItem('product.php?p=140', '<span class="tm-title">Distaflo</span>&reg; Bypass Graft')
];
divs[15] = new MenuDiv('peri', 0, 0, entries, divs[0]);

entries = [
new MenuItem('product.php?p=126', '<span class="tm-title">E-Luminexx</span>&reg; Vascular and Biliary Stent'),
new MenuItem('product.php?p=115', '<span class="tm-title">Lifestent</span>&reg; Vascular Stent')
];
divs[23] = new MenuDiv('stent', 0, 0, entries, divs[0]);

entries = [
new MenuItem('product.php?p=52', '<span class="tm-title">Fluency</span>&reg; Plus Tracheobronchial Stent Graft')
];
divs[27] = new MenuDiv('stentgraphs', 0, 0, entries, divs[0]);

entries = [
new MenuItem('product.php?p=134', '<span class="tm-title">G2 X</span>&reg; Filter System'),
new MenuItem('product.php?p=44', '<span class="tm-title">Recovery Cone</span>&reg; Removal System'),
new MenuItem('product.php?p=99', '<span class="tm-title">Recovery</span>&reg; <span class="tm-title"> G2</span>&reg; Filter System'),
new MenuItem('product.php?p=23', '<span class="tm-title">Simon Nitinol</span>&reg; Filter')
];
divs[30] = new MenuDiv('vena', 0, 0, entries, divs[0]);

complete_divs();
}

