	// grayden functions
	
	function newImage( imgSrc )
	{
		 var imgName = new Image();
		 imgName.src = imgSrc;
		
		 return imgName;
	}

	function change( imgName, imgLocation )
	{
		document[imgName].src = imgLocation ;
	}
	
	var preloadFlag = false;
	
	function loadImages()
	{
		if (document.images)
		{
			//****Edit this list to include rollover state images ****
			//****Example: aboutus_over = newImage( "images/aboutus-over.gif" );
			salesprocessover = newImage("images/salesprocesson.gif");
			buyprocessover = newImage("images/buyingprocesson.gif");
			rightagentover = newImage("images/rightagenton.gif");
			fiveqover = newImage("images/5questionson.gif");
			hiddencostsover = newImage("images/hiddencostson.gif");
			firsthomeover = newImage("images/1sthomebuyerson.gif");
			newsletterover = newImage("images/newsletteron.gif");
/*
			nextstepleftoff = newImage("images/nextstepleftoff.gif");
			nextstepleft = newImage("images/nextstepleft.gif");
			nextstepmid = newImage("images/nextstepmid.gif");
			nextstepmidoff = newImage("images/nextstepmidoff.gif");
			nextstepright = newImage("images/nextstepright.gif");
			nextsteprightoff = newImage("images/nextsteprightoff.gif");
			sellguidepdfdownloadon = newImage("images/sellguidepdfdownloadon.gif");
			guidepdfdownloadon = newImage("images/guidepdfdownloadon.gif");
*/
			preloadFlag = true;
		}
		
		img1 = new Image();
		img1.src = "images/nextstepleftoff.gif"
		
		img2 = new Image();
		img2.src = "images/nextstepleft.gif"
		
		img3 = new Image();
		img3.src = "images/nextstepmid.gif"
		
		img4 = new Image();
		img4.src = "images/nextstepmidoff.gif"
		
		img5 = new Image();
		img5.src = "images/nextstepright.gif"
		
		img6 = new Image();
		img6.src = "images/nextsteprightoff.gif"
		
		img7 = new Image();
		img7.src = "images/sellguidepdfdownloadon.gif"
		
		img8 = new Image();
		img8.src = "images/guidepdfdownloadon.gif"
	}
	