var index = 0;

var a = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0);

var button = new Array(	"./images/left_btns/req_docs1.jpg",
			"./images/left_btns/mrtg_programs1.jpg",
			"./images/left_btns/faq1.jpg",
			"./images/left_btns/refinance1.jpg",
			"./images/left_btns/eq_line1.jpg",
			"./images/left_btns/house_appraisal1.jpg",
			"./images/left_btns/property_srch1.jpg",
			"./images/left_btns/glossary1.jpg",
			"./images/top_btns/home1.jpg",
			"./images/top_btns/contact_us1.jpg",
			"./images/top_btns/calculators1.jpg",
			"./images/top_btns/calendar1.jpg",
			"./images/left_btns/EHL.jpg",
			"./images/left_btns/promise.jpg");		


function mouseClick(img2,index)		
{
	for (i = 0; i < 11; i++)
	{	
		a[i] = 0;
		document.images[i].src = button[i];
	} 
		
	
	a[index] = 1;
	document.images[index].src = img2;
}

function mouseOver(img2,index)	
{
   document.images[index].src = img2;   
}

function mouseOut(img1,img2,index)
{
  if ( a[index] == 1)
  document.images[index].src = img2;			
  else
  document.images[index].src = img1;			
}

