if (document.images) {

 img1_on =new Image(); img1_on.src ="images/home.jpg"; 
 img1_off=new Image(); img1_off.src="images/home_2.jpg"; 

 img2_on =new Image(); img2_on.src ="images/prodabout.jpg"; 
 img2_off=new Image(); img2_off.src="images/prodabout_2.jpg"; 

 img3_on =new Image(); img3_on.src ="images/newsp.jpg"; 
 img3_off=new Image(); img3_off.src="images/newsp_2.jpg"; 
 
 img4_on =new Image(); img4_on.src ="images/companies.jpg"; 
 img4_off=new Image(); img4_off.src="images/companies_2.jpg"; 
 
 img5_on =new Image(); img5_on.src ="images/contact.jpg"; 
 img5_off=new Image(); img5_off.src="images/contact_2.jpg";
 
 img6_on =new Image(); img6_on.src ="images/primary.jpg"; 
 img6_off=new Image(); img6_off.src="images/primary_2.jpg";  
}

function movr(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_on.src');
}

function mout(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_off.src');
}

function handleOver() {
 if (document.images) 
  document.imgName.src=img_on.src;
}

function handleOut() {
 if (document.images) 
  document.imgName.src=img_off.src;
}

document.write('<table align="center">');
document.write('<tr>');
document.write('<td><img src="images/investlogo.jpg"></td>');
document.write('</tr>');
document.write('</table>');

document.write('<table align="center" cellspacing="0">');
document.write('<tr>');
document.write('<td>');
document.write('<a href="invest.htm"');
document.write('onMouseOver="movr(1);return true;"');
document.write('onMouseOut="mout(1);return true;"');
document.write('onClick="return true;"');
document.write('><img name=img1 border=0 alt="Home" src="images/home_2.jpg"></a>');
document.write('</td>');
document.write('<td>');
document.write('<a href="investabout.htm"');
document.write('onMouseOver="movr(2);return true;"');
document.write('onMouseOut="mout(2);return true;"');
document.write('onClick="return true;"');
document.write('><img name=img2 border=0 alt="About Us" src="images/about_2.jpg"></a>');
document.write('</td>');
document.write('<td>');
document.write('<a href="investnewsletter.htm"');
document.write('onMouseOver="movr(3);return true;"');
document.write('onMouseOut="mout(3);return true;"');
document.write('onClick="return true;"');
document.write('><img name=img3 border=0 alt="Newsletter" src="images/newsp_2.jpg"></a>');
document.write('</td>');
document.write('<td>');
document.write('<a href="investcomp.htm"');
document.write('onMouseOver="movr(4);return true;"');
document.write('onMouseOut="mout(4);return true;"');
document.write('onClick="return true;"');
document.write('><img name=img4 border=0 alt="Services" src="images/companies_2.jpg"></a>');
document.write('</td>');
document.write('<td>');
document.write('<a href="investcontact.htm"');
document.write('onMouseOver="movr(5);return true;"');
document.write('onMouseOut="mout(5);return true;"');
document.write('onClick="return true;"');
document.write('><img name=img5 border=0 alt="Contact Us" src="images/contact_2.jpg"></a>');
document.write('</td>');
document.write('<td>');
document.write('<a href="index.html"');
document.write('onMouseOver="movr(6);return true;"'); 
document.write('onMouseOut="mout(6);return true;"');
document.write('onClick="return true;"');
document.write('><img name=img6 border=0 alt="Primary Companies" src="images/primary_2.jpg"></a>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
document.write('<br>');

function CrtFooter(page)
{
  switch(page){
 default:
    document.write('<table border="0" cellpadding="0" align="center"">');
	document.write('<tr>');
	document.write('<td width="130"></td>');
	document.write('<td>');
	document.write('<a href="invest.htm">Home</a> | ');
	document.write('<a href="investabout.htm">About Us</a> | ');
	document.write('<a href="investcomp.htm">Investments</a> | ');
	document.write('<a href="investcontact.htm">Contact Us</a> | ');
	document.write('<a href="index.html">Primary Companies</a>');
	document.write('</td>');
	document.write('<td width="130"></td>');
	document.write('</tr>');
    document.write('<tr>');
    document.write('<td colspan="5" align="center">');
	document.write('<font size="1">&#169;Copyright 2008 Primary Companies.  All rights reserved.</font>');
	document.write('</td>');
    document.write('</tr>');
    document.write('</table>');
    break;
  }
}
