//This script formats the drop down menus.

        hovercolor   = '#CCCCCC';       // color name/code
        bgcolor      = '#999999';       // color name/code
        background   = '';                      // picture url
        menu_border  = '1px';
        border_color = 'white';
        arrow_pic    = 'C:/DATA/REPPLUS/rarrow.gif'; // url of arrow picture for submenus

        if (!background) {
            background = bgcolor;
        } else {
            background = 'url('+background+')';
        }

        function LayerSpecs(Left, Top, Width) {
            if(document.all) {
                Top+=7;
                Left+=2;
            }
            Width+=56;
            this.left  = Left;
            this.top   = Top;
            this.info  = "";
            T=0;
            for(i=3; i<arguments.length; i++) {
                this.info += '<tr><td width="'+Width+'" onmouseover="this.bgColor=\''+hovercolor+'\';" onmouseout="this.bgColor=\'\';">'+arguments[i]+'</td></tr>';
                T+=20;
            }
        }

        Layer = new Array();
        arrow = '<img src="'+arrow_pic+'" width="6" height="10" border="0" alt="" />';

        Layer[1] =      new LayerSpecs(35,110,100,
        '<A HREF=ourspecialties.asp>Our Specialties</A>',
        '<A HREF=professional.asp>Value Added Services</A>'
        );

        Layer[2] =      new LayerSpecs(193,110,100,
        '<A HREF=PropaneIns.asp>Propane and Fuel Distributors</A>',
        '<A HREF=BusinessServices.asp>Value Added Services</A>'
        );

        Layer[3] =      new LayerSpecs(350,110,100,
        '<A HREF=HomeownersIns.asp>Homeowners Insurance</A>',
        '<A HREF=AutoIns.asp>Auto Insurance</A>',
        '<A HREF=LifeHealthIns.asp>Life and Health Insurance</A>',
        '<A HREF=OtherCoverages.asp>Other Coverages</A>'
        );

        Layer[4] =      new LayerSpecs(600,110,100,
        '<A HREF=Contacts.asp>Contact Us</A>',
        '<A HREF=Press.asp>News</A>',
	'<A HREF=AgentComp.asp>Agent Compensation</A>',
        '<A HREF=JobSeekers.asp>Job Seekers</A>'
        );
        
        Layer[5] =      new LayerSpecs(507,110,100,
        '<A HREF=IBOTBCDisclosure.asp>Business Continuity Planning<br> Disclosure Statement</A>',
        '<A HREF=IBOTPrivacyPolicy.asp>Privacy Policy</A>',
	'<A HREF=IBOTCustomerIdentification.asp>Customer Identification</A>',
	'<A HREF=IBOTSIPCDisclosure.asp>SIPC Disclosure</A>',
	'<A HREF=IBOTCompliant.asp>Compliant Notification</A>',
        '<A TARGET=_new HREF=Redirect.asp>SEC Rule 11Ac1-6</A>'
        );

        j = (Layer[0]) ? 0:1;

        for(i=j; i<Layer.length; i++) {
            document.writeln('<span onmouseover="clearTimeout(timer);" onmouseout="Hide('+i+');" id="L'+i+'" STYLE="position:absolute; visibility:hidden; background:'+background+'; top:'+Layer[i].top+'; left:'+Layer[i].left+';">');
            document.writeln('<table style="border:solid '+menu_border+' '+border_color+'">'+Layer[i].info+'</table>');
            document.writeln('</span>');
        }
