View Full Version : nav menu w/rollover problems


rabiddustbunnie
07-29-2005, 07:44 PM
Hi everyone... I'm having problems with a javascript code I've used many other times without experiencing difficulties and I can't figure out the error for the life of me! Basically I'm using the script for a navigation menu that uses images. When a viewer hovers over an image, the image should change. I'm getting an error at the bottom of my browser which reads "error on page" then when I click on it, I get a "object expected" error but I can't find the missing object/character. If anybody could over advice, I'd greatly appreciate it! The script is shown below. The first part of the script goes in the "head" section of a website, and the second part goes where the navigation menu is.

1ST PART OF SCRIPT

<SCRIPT language="JavaScript">
<!--

if (document.images)
{
pic1on= new Image(120,14);
pic1on.src="/images/buttons/btn_top_calcON.gif";
pic2on= new Image(85,14);
pic2on.src="/images/buttons/btn_top_ratesON.gif";
pic3on= new Image(54,14);
pic3on.src="/images/buttons/btn_top_glossaryON.gif";
pic4on= new Image(38,14);
pic4on.src="/images/buttons/btn_top_applyON.gif";
pic5on= new Image(36,14);
pic5on.src="/images/buttons/btn_top_homeON.gif";
pic6on= new Image(79,57);
pic6on.src="/images/buttons/btn_companyON.gif";
pic7on= new Image(76,57);
pic7on.src="/images/buttons/btn_staffON.gif";
pic8on= new Image(79,57);
pic8on.src="/images/buttons/btn_mortgageON.gif";
pic9on= new Image(80,57);
pic9on.src="/images/buttons/btn_educationON.gif";
pic10on= new Image(81,57);
pic10on.src="/images/buttons/btn_buyersON.gif";
pic11on= new Image(87,57);
pic11on.src="/images/buttons/btn_contactON.gif";
pic12on= new Image(53,57);
pic12on.src="/images/buttons/btn_linksON.gif";
pic13on= new Image(57,57);
pic13on.src="/images/buttons/btn_faqsON.gif";



pic1off= new Image(120,14);
pic1off.src="/images/buttons/btn_top_calc.gif";
pic2off= new Image(85,14);
pic2off.src="/images/buttons/btn_top_rates.gif";
pic3off= new Image(54,14);
pic3off.src="/images/buttons/btn_top_glossary.gif";
pic4off= new Image(38,14);
pic4off.src="/images/buttons/btn_top_apply.gif";
pic5off= new Image(36,14);
pic5off.src="/images/buttons/btn_top_home.gif";
pic6off= new Image(79,57);
pic6off.src="/images/buttons/btn_company.gif";
pic7off= new Image(76,57);
pic7off.src="/images/buttons/btn_staff.gif"";
pic8off= new Image(79,57);
pic8off.src="/images/buttons/btn_mortgage.gif";
pic9off= new Image(80,57);
pic9off.src="/images/buttons/btn_education.gif";
pic10off= new Image(81,57);
pic10off.src="/images/buttons/btn_buyers.gif";
pic11off= new Image(87,57);
pic11off.src="/images/buttons/btn_contact.gif";
pic12off= new Image(53,57);
pic12off.src="/images/buttons/btn_links.gif";
pic13off= new Image(57,57);
pic13off.src="/images/buttons/btn_faqs.gif";
}

function lightup(imgName)
{
if (document.images)
{
imgOn=eval(imgName + "on.src");
document[imgName].src= imgOn;
}
}

function turnoff(imgName)
{
if (document.images)
{
imgOff=eval(imgName + "off.src");
document[imgName].src= imgOff;
}
}

//-->
</SCRIPT>


2ND PART OF SCRIPT

<A HREF="calculator.shtml" onMouseover="lightup('pic1')" onMouseout="turnoff('pic1')"> <IMG SRC="../images/buttons/btn_top_calc.gif" name="pic1" width="120" height="14" border="0"></A>


<A HREF="rates.shtml" onMouseover="lightup('pic2')" onMouseout="turnoff('pic2')"><IMG SRC="/images/buttons/btn_top_rates.gif" name="pic2" width="85" height="14" border="0"></A>


<A HREF="glossary.shtml" onMouseover="lightup('pic3')" onMouseout="turnoff('pic3')"><IMG SRC="/images/buttons/btn_top_glossary.gif" name="pic3" width="54" height="14" border="0"></A>


<A HREF="apply.shtml" onMouseover="lightup('pic4')" onMouseout="turnoff('pic4')"><IMG SRC="/images/buttons/btn_top_apply.gif" name="pic4" width="38" height="14" border="0"></A>


<A HREF="index.shtml" onMouseover="lightup('pic5')" onMouseout="turnoff('pic5')"><IMG SRC="/images/buttons/btn_top_home.gif" name="pic5" width="36" height="14" border="0"></A>

<A HREF="company.shtml" onMouseover="lightup('pic6')" onMouseout="turnoff('pic6')"><IMG SRC="/images/buttons/btn_company.gif" name="pic6" width="79" height="57" border="0"></A>


<A HREF="staff.shtml" onMouseover="lightup('pic7')" onMouseout="turnoff('pic7')"><IMG SRC="/images/buttons/btn_staff.gif" name="pic7" width="76" height="57" border="0"></A>


<A HREF="/mortgage/mortgage.shtml" onMouseover="lightup('pic8')" onMouseout="turnoff('pic8')"><IMG SRC="/images/buttons/btn_mortgage.gif" name="pic8" width="79" height="57" border="0"></A>


<A HREF="/education/education.shtml" onMouseover="lightup('pic9')" onMouseout="turnoff('pic9')"><IMG SRC="/images/buttons/btn_education.gif" name="pic9" width="80" height="57" border="0"></A>


<A HREF="buyers.shtml" onMouseover="lightup('pic10')" onMouseout="turnoff('pic10')"><IMG SRC="/images/buttons/btn_buyers.gif" name="pic10" width="81" height="57" border="0"></A>


<A HREF="contact.shtml" onMouseover="lightup('pic11')" onMouseout="turnoff('pic11')"><IMG SRC="/images/buttons/btn_contact.gif" name="pic11" width="87" height="57" border="0"></A>


<A HREF="links.shtml" onMouseover="lightup('pic12')" onMouseout="turnoff('pic12')"><IMG SRC="/images/buttons/btn_links.gif" name="pic12" width="53" height="57" border="0"></A>


<A HREF="faqs.shtml" onMouseover="lightup('pic13')" onMouseout="turnoff('pic13')"><IMG SRC="/images/buttons/btn_faqs.gif" name="pic13" width="57" height="57" border="0"></A>