var iStart = new Number( 1 );
var iEnd = new Number( 50 );

var homeIdeas = new Array();

homeIdeas[1] = "Fully Loaded";
homeIdeas[2] = "Lots and Locations";
homeIdeas[3] = "Contracts and Warranties";
homeIdeas[4] = "Interior Decorating";
homeIdeas[5] = "Letting the Sun In";
homeIdeas[6] = "Financing";
homeIdeas[7] = "Sitting Rooms Create Your Great Escape";
homeIdeas[8] = "Bringing the Office Home";
homeIdeas[9] = "401K Condo";
homeIdeas[10] = "Creating an Outdoor \'Room\'";
homeIdeas[11] = "Let There be Light";
homeIdeas[12] = "How to Select a Builder";
homeIdeas[13] = "All in the Family";
homeIdeas[14] = "Remodeling";
homeIdeas[15] = "Front-End Loaders";
homeIdeas[16] = "Built Upon a Rock";
homeIdeas[17] = "Hunter's Delight";
homeIdeas[18] = "Breaking the Mold";
homeIdeas[19] = "Why use a Contractor?";
homeIdeas[20] = "Splitting Up";
homeIdeas[21] = "Lighting Artwork";
homeIdeas[22] = "The Millennium Home";
homeIdeas[23] = "Weed Whacking";
homeIdeas[24] = "Children's Rooms";
homeIdeas[25] = "Energy Advice";
homeIdeas[26] = "Color Conscious";
homeIdeas[27] = "Formal or Casual?";
homeIdeas[28] = "Cabinetry";
homeIdeas[29] = "Jump Right In";
homeIdeas[30] = "A Splash of Color";
homeIdeas[31] = "Out of the Closet";
homeIdeas[32] = "Deck The Halls";
homeIdeas[33] = "Windows";
homeIdeas[34] = "Hangin' Around";
homeIdeas[35] = "Keeping an Eye on the Kids";
homeIdeas[36] = "Lightened Landscape";
homeIdeas[37] = "Change your Home... Not your Address";
homeIdeas[38] = "Shutter the Thought";
homeIdeas[39] = "Build the Best Home Theater";
homeIdeas[40] = "Custom Concrete";
homeIdeas[41] = "Collector's Corner";
homeIdeas[42] = "Quartz";
homeIdeas[43] = "Liquid Landscaping";
homeIdeas[44] = "A New Look for an Older Yard";
homeIdeas[45] = "Fabulous Stone Fireplaces";
homeIdeas[46] = "The Ring of Fire";
homeIdeas[47] = "Getting the Bid Process Right";
homeIdeas[48] = "Bath Time";
homeIdeas[49] = "Under Your Feet";
homeIdeas[50] = "Convectional Cooking";


function hi_preloadImages( istart, iend )
{
	var d=document;

	for (i=istart; i <= (iend); i++)
	{
		var fname = new String( '_'+i+'_On' );
		var fdir = new String( i+'/imgOn.jpg' );
		eval('d.'+fname+' = new Image;' );
		eval('d.'+fname+'.src = "'+fdir+'";');

		fname = "_"+i+"_Off";
		fdir = new String( i+'/imgOff.jpg' );
		eval('d.'+fname+' = new Image;' );
		eval('d.'+fname+'.src = "'+fdir+'";');
	}
}

function hi_swapImage( imgnum )
{
	var d=document;
	var fname = new String( '_'+imgnum+'_On' );

	eval("if(d."+fname+") { d.img"+imgnum+".src = d."+fname+".src; }");

	window.status=homeIdeas[imgnum];
}

function hi_swapImgRestore( imgnum )
{
	var d=document;
	var fname = new String( '_'+imgnum+'_Off' );

	eval("if(d."+fname+") { d.img"+imgnum+".src = d."+fname+".src; }");

	window.status="";
}
