I need some help with this menu script. I want to extend the ends with a non-linking graphic that will go out to the left and right ends of my page.
My attempt at this is shown in lines with all the spaces but I know this is sloppy and not the way to go about it. Plus if someone clicks on these edges it take them back to the index page.
I just want a bar, same size and color to extend out to the edges for aesthetic reasons.
Thank you for any help.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script type="text/javascript" language="JavaScript">
<!---
// Use Freely as long as following disclaimer is intact:
//---------------------------------------------------------------
// Cross Browser Multi-Orientation Menu v1.2 11th February 2004
// Written by Rik Comery. www.ricom.co.uk, support at www.ricom.co.uk
// All rights reserved.
// Featured in the SimplytheBest DHTML Scripts Library at http://simplythebest.net/scripts/
// MENU ITEMS - DUPLICATE THIS ENTIRE SECTION FOR MULTIPLE MENUS.
var Menu1 = new Array ()
var subMenu1 = new Array ()
Menu1[0] = new Array(" ", "index.shtml","_top", "left")
subMenu1[0] = new Array()
Menu1[1] = new Array("HOME", "http://affhomeloans.com","_top", "left")
subMenu1[1] = new Array()
Menu1[2] = new Array("What you need to know", "","_top", "left")
subMenu1[2] = new Array()
subMenu1[2][0] = new Array ("Buying a home", "/buyingquestions.shtml","_top")
subMenu1[2][1] = new Array ("Selling your home", "/selling.shtml","_top")
subMenu1[2][2] = new Array ("Selling Tips", "/sellingtips.shtml","_top")
subMenu1[2][3] = new Array ("Using Your Equity", "/equity.shtml","_top")
subMenu1[2][4] = new Array ("Getting Pre-Qualified", "/prequal.shtml","_top")
Menu1[3] = new Array("Prequalification", "apform2.shtml","_top", "left")
subMenu1[3] = new Array()
Menu1[4] = new Array("Glossary", "/glossary.shtml","_top", "left")
subMenu1[4] = new Array()
Menu1[5] = new Array("Contacts", "http://affhomeloans.com","_top", "right")
subMenu1[5] = new Array()
subMenu1[5][0] = new Array ("Company profile", "/about.shtml","_top")
subMenu1[5][1] = new Array ("Privacy Policy", "/privacy.shtml","_top")
subMenu1[5][2] = new Array ("Feedback form", "/contact.shtml","_top")
subMenu1[5][3] = new Array ("Map/Directions", "/directions.shtml","_top")
Menu1[6] = new Array(" ", "index.shtml","_top", "left")
subMenu1[6] = new Array()
////// FORMAT MENU
menuStyle = "3d" // Menu Style (flat, 3d)
cellPadding = 6 // Cell Padding
cellBorder = 2 // Include table border (0 for no border)
verticalOffset = 0 // Vertical offset of Sub Menu.
horizontalOffset = 9 // Horizontal offset of Sub Menu.
subMenuDelay = 0 // Time sub menu stays visible for (in seconds)
subIndicate = 1 // Show if a sub menu is present (0 for "no")
indicator = "+" // Symbol to show if a sub menu is present (subIndicate must be to set to 1)
// Use standard HTML <img> tag. You can use a character instead of an image.
// e.g. indicator = ">"
// Main Menu Items
borderColor = "#ffffff" // Border Colour (flat mode only)
borderHighlight = "#97BBD3" // Border Highlight Colour (3d mode only)
borderShadow = "black" // Border Shadow Colour (3d mode only)
menuBackground = "Blue" // Cell Background Colour
menuHoverBackground = "CornflowerBlue" // Cell Background Colour on mouse rollover
fontFace = "arial" // Font Face
fontColour = "#FFFFFF" // Font Colour
fontHoverColour = "#black" // Font Colour on mouse rollover
fontSize = "8pt" // Font Size
fontDecoration = "none" // Style of the link text (none, underline, overline, line-through)
fontWeight = "bold" // Font Weight (normal, bold)
// Sub Menu Items
sborderColor = "black" // Border Colour (flat mode only)
sborderHighlight = "#E9E9E2" // Border Highlight Colour (3d mode only)
sborderShadow = "#83837C" // Border Shadow Colour (3d mode only)
smenuBackground = "SkyBlue" // Cell Background Colour
smenuHoverBackground = "Aqua" // Cell Background Colour on mouse rolloverr
sfontFace = "arial" // Font Face
sfontColour = "#black" // Font Colour
sfontHoverColour = "#000000" // Font Colour on mouse rollover
sfontSize = "8pt" // Font Size
sfontDecoration = "none" // Style of the link text (none, underline, overline, line-through)
sfontWeight = "bold" // Font Weight (normal, bold)
sShadow = 1
////// END FORMAT MENU
quantity = 1
////// DO NOT EDIT BELOW THIS LINE
// Browser Sniffer
var isIE = (document.getElementById && document.all)?true:false;
var isNS4 = (document.layers)?true:false;
var isNS6 = (document.getElementById && !document.all)?true:false;