// JavaScript Document

// JavaScript Document


//***** BEGIN: AJAX HANDLING FUNCTIONS 	

	var vObjAjax = funcCreateRequestObject();		// This is the ajax object.
	var vStrTargetDiv;		// This holds the name of the target div.  Used when the ajax call returns to know where to place the content.
	
	// Create the Ajax Request Object.
	function funcCreateRequestObject() {
		var ro;
		var browser = navigator.appName;
		if(browser == "Microsoft Internet Explorer"){
			ro = new ActiveXObject("Microsoft.XMLHTTP");
		} else {
			ro = new XMLHttpRequest();				
		}
	
		return ro;
	}		
	

// Get the document from the server, via XML Request.
		// fStrFileToGet: receives the name of the file to request from the server.
	function funcCallXMLRequest(fStrFileToGet) {
		
		vObjAjax.open('get', fStrFileToGet, false);

		// Set up to handle a text response.
		vObjAjax.onreadystatechange = funcHandleTextResponse;
		
		vObjAjax.send(null);
	}
			
	
// This handles the ajax object's server response.
		// Used for text based responses that have a target div.
	function funcHandleTextResponse() {
		
		if(vObjAjax.readyState == 4){
			var vStrResponse = vObjAjax.responseText;
			
			document.getElementById("DivModelHomeDetail").innerHTML = vStrResponse;
			document.getElementById("DivModelHomeDetailContainer").style.visibility = "visible";
			//document.getElementById(vStrTargetDivToShow).style.visibility = 'visible';
		}
	}	


// This shows the list of home collections in the second box, based on the manufacturere logo clicked on in box one.
	// fStrBrand: receives the brand name whose collection list to show.
	function funcShowCollectionList(fStrBrand) {
		// Blank box three.
		document.getElementById("DivModelsHouseList").innerHTML = "";
		switch (fStrBrand)
		{
		case "ranell":
			document.getElementById("DivModelsPlanList").innerHTML = vContentCollectionListRanell;
			break;
		case "excel":	
			document.getElementById("DivModelsPlanList").innerHTML = vContentCollectionListExcel;
			break;	
		}
	}


// This shows the list of home plans in the third box, based on the collection name clicked on in box two.
	// fStrCollection: receives the collection name whose home plans to show.
	function funcShowHomeList(fStrCollection) {	
		switch (fStrCollection) 
		{
		case "RanellPremiumRanch":
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListRanellPremiumRanch;
			break;
		case "RanellGoldMedal":
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListRanellGoldMedal;
			break;	
		case "RanellRanch":
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListRanellRanch;
			break;
		case "RanellCapeCod":
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListRanellCapeCod;
			break;	
		case "RanellTwoStory":
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListRanellTwoStory;
			break;
		case "RanellLegends":
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListRanellLegends;
			break;	
		case "RanellCommercial":
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListRanellMultiFamily;
			break;			
		case "ExcelRaisedRanch":	
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListExcelRaisedRanch;
			break;	
		case "ExcelRanch":	
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListExcelRanch;
			break;	
		case "ExcelCapeCod":	
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListExcelCapeCod;
			break;	
		case "ExcelContemporary":	
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListExcelContemporary;
			break;
		case "ExcelEasyLiving":	
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListExcelEasyLiving;
			break;	
		case "ExcelTwoStory":	
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListExcelTwoStory;
			break;				
		case "ExcelTownhouse":	
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListExcelTownhouse;
			break;	
		case "ExcelDuplex":	
			document.getElementById("DivModelsHouseList").innerHTML = vContentHomeListExcelDuplex;
			break;				
		}
	}

// Show the home detail information.
	function funcShowHomeDetail(fStrModelFileToGet) {
		fStrModelFileToGet = "/models/pages/" + fStrModelFileToGet;
		funcCallXMLRequest(fStrModelFileToGet);
	}
	
// Hide the home detail layer.	
	function funcHideHome() {
		document.getElementById("DivModelHomeDetailContainer").style.visibility = "hidden";		// hide the home detail layer.
	}


// Collection Arnell - This is the list of A-rnell home collections.  It is read into the second box on the home plans page.	
var vContentCollectionListRanell = "";
	vContentCollectionListRanell += "<a href='#' onClick=\"funcShowHomeList('RanellPremiumRanch')\" class=listlook>Premium Ranch</a><br>";
	vContentCollectionListRanell += "<a href='#' onClick=\"funcShowHomeList('RanellGoldMedal')\" class=listlook>Gold Medal</a><br>";
	vContentCollectionListRanell += "<a href='#' onClick=\"funcShowHomeList('RanellRanch')\" class=listlook>Ranch</a><br>";
	vContentCollectionListRanell += "<a href='#' onClick=\"funcShowHomeList('RanellCapeCod')\" class=listlook>Cape Cod</a><br>";
	vContentCollectionListRanell += "<a href='#' onClick=\"funcShowHomeList('RanellTwoStory')\" class=listlook>Two Story</a><br>";
	vContentCollectionListRanell += "<a href='#' onClick=\"funcShowHomeList('RanellLegends')\" class=listlook>Legends</a><br>";
	vContentCollectionListRanell += "<a href='#' onClick=\"funcShowHomeList('RanellCommercial')\" class=listlook>Multi-Family & Commercial</a><br>";

// Collection Excel - This is the list of Excel home collections.  It is read into the second box on the home plans page.	
var vContentCollectionListExcel = "";
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelRaisedRanch')\" class=listlook>Raised Ranch</a><br>";
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelRanch')\" class=listlook>Ranch</a><br>";
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelCapeCod')\" class=listlook>Cape Cod</a><br>";
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelSplitLevel')\" class=listlook>Split Level</a><br>";
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelContemporary')\" class=listlook>Contemporary</a><br>";
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelEasyLiving')\" class=listlook>Easy Living</a><br>";	
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelTwoStory')\" class=listlook>Two Story</a><br>";
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelTownhouse')\" class=listlook>Townhouse</a><br>";
	vContentCollectionListExcel += "<a href='#' onClick=\"funcShowHomeList('ExcelDuplex')\" class=listlook>Duplex</a><br>";		
	
// Home List - Ranell Premium Ranch
var vContentHomeListRanellPremiumRanch = "";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_773.html')\" class=listlook>Model 773 - The Asheville</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_785.html')\" class=listlook>Model 785 - The Davidson</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_795.html')\" class=listlook>Model 795 - The Charleston</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_798.html')\" class=listlook>Model 798 - The Savannah</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_808.html')\" class=listlook>Model 808 - The Winston</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_810.html')\" class=listlook>Model 810 - The Davidson II</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_812.html')\" class=listlook>Model 812 - The Edenton</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_826.html')\" class=listlook>Model 826 - The Columbia</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_827.html')\" class=listlook>Model 827 - Richmond</a><br>";
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_828.html')\" class=listlook>Model 828 - Augusta</a><br>";	
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_829_b.html')\" class=listlook>Model 829 - The Marietta</a><br>";		
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_additions.html')\" class=listlook>Additions</a><br>";		
	vContentHomeListRanellPremiumRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_premium_ranch/r-anell_premiumranch_model_standards.html')\" class=listlook>Standard Features</a>";		
	
// Home List - Ranell Gold Medal
var vContentHomeListRanellGoldMedal = "";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm03.html')\" class=listlook>Gold Medal Model 03</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm16.html')\" class=listlook>Gold Medal Model 16</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm17.html')\" class=listlook>Gold Medal Model 17</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm71.html')\" class=listlook>Gold Medal Model 71</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm73.html')\" class=listlook>Gold Medal Model 73</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm75.html')\" class=listlook>Gold Medal Model 75</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm77.html')\" class=listlook>Gold Medal Model 77</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm79.html')\" class=listlook>Gold Medal Model 79</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_model_gm81-82.html')\" class=listlook>Gold Medal Model 81 & 82</a><br>";
	vContentHomeListRanellGoldMedal += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_goldmedal/r-anell_goldmedal_standards.html')\" class=listlook>Gold Medal Standard Features</a><br>";

// Home List - Ranell Ranch
var vContentHomeListRanellRanch = "";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_15.html')\" class=listlook>Model 15 - Goldston</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_21.html')\" class=listlook>Model 21 - Albany</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_33.html')\" class=listlook>Model 33 - Newnan</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_37.html')\" class=listlook>Model 37 - Auburn</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_41.html')\" class=listlook>Model 41 - Clifton</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_420.html')\" class=listlook>Model 420 - Norton</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_546.html')\" class=listlook>Model 546 - Grant</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_592.html')\" class=listlook>Model 592 - Ellerbe</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_668.html')\" class=listlook>Model 668 - Adams</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_669.html')\" class=listlook>Model 669 - Richfield</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_675.html')\" class=listlook>Model 675 - Mayfield</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_676.html')\" class=listlook>Model 676 - Dulah</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_692.html')\" class=listlook>Model 692 - Arlington</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_694.html')\" class=listlook>Model 694 - Bridgeport</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_7.html')\" class=listlook>Model 7 - Cheraw</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_703.html')\" class=listlook>Model 703 - Wingate</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_715.html')\" class=listlook>Model 715 - Havelock</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_727.html')\" class=listlook>Model 727 - Brunswick</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_738.html')\" class=listlook>Model 738 - Lincolnton</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_756.html')\" class=listlook>Model 756 - Elkridge</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_760.html')\" class=listlook>Model 760 - James</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_763.html')\" class=listlook>Model 763 - Rochester</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_768.html')\" class=listlook>Model 768 - Bluffton</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_770.html')\" class=listlook>Model 770 - Marion</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_775.html')\" class=listlook>Model 775 - Wake Forest</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_777.html')\" class=listlook>Model 777 - Seneca</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_791.html')\" class=listlook>Model 791 - Lancaster</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_793.html')\" class=listlook>Model 793 - Greenwood</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_794.html')\" class=listlook>Model 794 - The Jamestown</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_803.html')\" class=listlook>Model 803 - Milford</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_814.html')\" class=listlook>Model 814 - Lexington</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_817.html')\" class=listlook>Model 817 - Delwood</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_818.html')\" class=listlook>Model 818 - Graham</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_819.html')\" class=listlook>Model 819 - Blue Ridge</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_820.html')\" class=listlook>Model 820 - Creekside</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_821.html')\" class=listlook>Model 821 - Jefferson</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_822.html')\" class=listlook>Model 822 - Cherokee</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_823.html')\" class=listlook>Model 823 - Appalachian</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_824.html')\" class=listlook>Model 824 - Sawgrass</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_825.html')\" class=listlook>Model 825 - Lenoir</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_830.html')\" class=listlook>Model 830 - Camron</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_900.html')\" class=listlook>Model 900 - Fairmont</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_902.html')\" class=listlook>Model 902 - Denmark</a><br>";
	vContentHomeListRanellRanch += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_ranch/r-anell_ranch_model_standards.html')\" class=listlook>Standard Features</a><br>";
	
// Home List - Ranell Cape Cod
var vContentHomeListRanellCapeCod = "";
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_model_47.html')\" class=listlook>Model 47 - Dawson</a><br>";
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_model_51.html')\" class=listlook>Model 51 - Vineyard</a><br>";
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_model_384.html')\" class=listlook>Model 384 - Lakeland</a><br>";
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_model_596.html')\" class=listlook>Model 596 - Windsor</a><br>";
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_model_696.html')\" class=listlook>Model 696 - Middlebury</a><br>";
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_model_705.html')\" class=listlook>Model 705 - Sparta</a><br>";
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_model_720.html')\" class=listlook>Model 720 - Richmond</a><br>";
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_model_831.html')\" class=listlook>Model 831 - Mitchell</a><br>";	
	vContentHomeListRanellCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_capecod/r-anell_capecod_standards.html')\" class=listlook>Standard Features</a>";		
	
// Home List - Ranell Two Story
var vContentHomeListRanellTwoStory = "";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_389.html')\" class=listlook>Model 389 - Pennside</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_661.html')\" class=listlook>Model 661 - Cresson</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_664.html')\" class=listlook>Model 664 - Williamston</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_674.html')\" class=listlook>Model 674 - Oakridge</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_683.html')\" class=listlook>Model 683 - The Charlotte</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_722.html')\" class=listlook>Model 722 - Kent</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_769.html')\" class=listlook>Model 769 - Brockton</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_771.html')\" class=listlook>Model 771 - The Georgtown</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_772.html')\" class=listlook>Model 772 - Worchester</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_781.html')\" class=listlook>Model 781 - Westin</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_799.html')\" class=listlook>Model 799 - Bluewater</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_804.html')\" class=listlook>Model 804 - The Charlotte II</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_806.html')\" class=listlook>Model 806 - Belmont</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_811.html')\" class=listlook>Model 811 - Bedford</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_813.html')\" class=listlook>Model 813 - Waterford</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_905.html')\" class=listlook>Model 905 - Brighton</a><br>";
	vContentHomeListRanellTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_two_story/r-anell_twostory_model_standards.html')\" class=listlook>Standard Features</a><br>";

// Home List - Ranell Legends
var vContentHomeListRanellLegends = "";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_1.html')\" class=listlook>Legends 1</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_10.html')\" class=listlook>Legends 10</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_11.html')\" class=listlook>Legends 11</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_12.html')\" class=listlook>Legends 12</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_13.html')\" class=listlook>Legends 13</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_14.html')\" class=listlook>Legends 14</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_2.html')\" class=listlook>Legends 2</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_3.html')\" class=listlook>Legends 3</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_4.html')\" class=listlook>Legends 4</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_5.html')\" class=listlook>Legends 5</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_6.html')\" class=listlook>Legends 6</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_7.html')\" class=listlook>Legends 7</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_8.html')\" class=listlook>Legends 8</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_9.html')\" class=listlook>Legends 9</a><br>";
	vContentHomeListRanellLegends += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_legends/r-anell_legends_standards.html')\" class=listlook>Standard Features</a><br>";

// Home List - Ranell MultiFamily Commercial
var vContentHomeListRanellMultiFamily = "";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_duplex_1-2.html')\" class=listlook>Duplex 1-2</a><br>";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_duplex_3-5.html')\" class=listlook>Duplex 3-5</a><br>";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_duplex_standards.html')\" class=listlook>Duplex Standard Features</a><br>";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_office_1.html')\" class=listlook>Office 1</a><br>";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_office_2-4.html')\" class=listlook>Office 2-4</a><br>";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_townhome_13.html')\" class=listlook>Townhomes 13</a><br>";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_townhome_2.html')\" class=listlook>Townhomes 2</a><br>";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_townhome_9-10.html')\" class=listlook>Townhomes 9-10</a><br>";
	vContentHomeListRanellMultiFamily += "<a href='#' onClick=\"funcShowHomeDetail('r-anell_multi-family_commercial/r-anell_multifamilycommercial_townhome_standards.html')\" class=listlook>Townhome Standard Features</a><br>";

// Home List - Excel Raised Ranch
var vContentHomeListExcelRaisedRanch = "";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_beechhilll.html')\" class=listlook>Beeach Hill I</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_beechhillll.html')\" class=listlook>Beech Hill II</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_beechhilllll.html')\" class=listlook>Beach Hill III</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_beechhilllv.html')\" class=listlook>Beach Hill IV</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_cherryhilll.html')\" class=listlook>Cherry Hill I</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_cherryhillll.html')\" class=listlook>Cherry Hill II</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_cherryhilllll.html')\" class=listlook>Cherry Hill III</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_cherryhilllv.html')\" class=listlook>Cherry Hill IV</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_walnuthilll.html')\" class=listlook>Walnut Hill I</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_walnuthillll.html')\" class=listlook>Walnut Hill II</a><br>";
	vContentHomeListExcelRaisedRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_raised_ranch/excel_raisedranch_walnuthilllv.html')\" class=listlook>Walnut Hill IV</a><br>";

// Home List - Excel Ranch
var vContentHomeListExcelRanch = "";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_7344_freedom.html')\" class=listlook>7344 Freedom IA</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_7371_ultimac21.html')\" class=listlook>7371 Ultima C21A</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_7372_ultima.html')\" class=listlook>7372 Ultima R41A</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_7377_edison.html')\" class=listlook>7377 Edison IIA</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_7380_easton.html')\" class=listlook>7380 Easton</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_7381_palmyra.html')\" class=listlook>7381 Palmyra</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_addison.html')\" class=listlook>Addison</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_addison_options.html')\" class=listlook>Addison Options</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_aftonvilla.html')\" class=listlook>Afton Villa</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_augusta.html')\" class=listlook>Augusta</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_bainbridge.html')\" class=listlook>Bainbridge</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_bellevue.html')\" class=listlook>Bellevue</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_bishop.html')\" class=listlook>Bishop</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_brentwoodl.html')\" class=listlook>Brentwood I</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_brentwoodll.html')\" class=listlook>Brentwood II</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_brentwoodlll.html')\" class=listlook>Beeach Hill I</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_brentwoodlv.html')\" class=listlook>Brentwood IV</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_buttonwood.html')\" class=listlook>Buttonwood</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_cadwell.html')\" class=listlook>Cadwell</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_cadwell_options.html')\" class=listlook>Cadwell Options</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_centralia.html')\" class=listlook>Centralia</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_chesterbrook.html')\" class=listlook>Chesterbrook</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_crestwoodll.html')\" class=listlook>Crestwood II</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_crestwoodlll.html')\" class=listlook>Crestwood III</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_crestwoodlv.html')\" class=listlook>Crestwood IV</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_crestwoodv.html')\" class=listlook>Crestwood V</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_cumberland.html')\" class=listlook>Cumberland</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_deerwood.html')\" class=listlook>Deerwood</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_dillworth.html')\" class=listlook>Dillworth</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_edgemont.html')\" class=listlook>Edgemont</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_faulkner.html')\" class=listlook>Faulkner</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_fenwick.html')\" class=listlook>Fenwick</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_geneva.html')\" class=listlook>Geneva</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_greenwood.html')\" class=listlook>Greenwood</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_hempstead.html')\" class=listlook>Hempstead</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_independencelll.html')\" class=listlook>Independence III</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_independencev.html')\" class=listlook>Independence V</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_jamison.html')\" class=listlook>Jamison</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_kenmare.html')\" class=listlook>Kenmare</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_lakewoodll.html')\" class=listlook>Lakewood II</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_lakewoodlll.html')\" class=listlook>Lakewood III</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_lakewoodlv.html')\" class=listlook>Lakewood IV</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_lewisburgl.html')\" class=listlook>Lewisburg I</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_lewisburgll.html')\" class=listlook>Lewisburg II</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_libertyll.html')\" class=listlook>Liberty II</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_linden.html')\" class=listlook>Linden</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_minerva.html')\" class=listlook>Minerva</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_montalto.html')\" class=listlook>Mont Alto</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_norwood.html')\" class=listlook>Norwood</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_noval.html')\" class=listlook>Nova I</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_noval_option.html')\" class=listlook>Nova I - Option</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_novalx.html')\" class=listlook>Nova IX</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_novaxll.html')\" class=listlook>Nova XII</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_onieda.html')\" class=listlook>Onieda</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_pinehurst.html')\" class=listlook>Pinehurst</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_pinewoodll.html')\" class=listlook>Pinewood II</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_pinewoodlll.html')\" class=listlook>Pinewood III</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_pinewoodlv.html')\" class=listlook>Pinewood IV</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_providence.html')\" class=listlook>Providence</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_providence_options.html')\" class=listlook>Providence - Options</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_raleigh.html')\" class=listlook>Raleigh</a><br>";	
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_randolph.html')\" class=listlook>Randolph</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_rockefeller.html')\" class=listlook>Rockefeller</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_rockhill.html')\" class=listlook>Rock Hill</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_sandusky.html')\" class=listlook>Sandusky</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_santee.html')\" class=listlook>Santee</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_shenandoah.html')\" class=listlook>Shenandoah</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_talbot.html')\" class=listlook>Talbot</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_tannerridge.html')\" class=listlook>Tanner Ridge</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_valencia.html')\" class=listlook>Valencia</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_villamaria.html')\" class=listlook>Villa Maria</a><br>";
	vContentHomeListExcelRanch += "<a href='#' onClick=\"funcShowHomeDetail('excel_ranch/excel_ranch_wallingford.html')\" class=listlook>Wallingford</a><br>";

	
// Home List - Excel Cape Cod
var vContentHomeListExcelCapeCod = "";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_anne.html')\" class=listlook>Cape Anne</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_bayview.html')\" class=listlook>Bayview</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_bethel.html')\" class=listlook>Bethel</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_cambridge.html')\" class=listlook>Cape Cambridge</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_charleston.html')\" class=listlook>Charleston</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_chelsey.html')\" class=listlook>Chelsey</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_cod.html')\" class=listlook>Cape Cod</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_collins.html')\" class=listlook>Cape Collins</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_concordl.html')\" class=listlook>Concord I</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_concordll.html')\" class=listlook>Concord II</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_concordlll.html')\" class=listlook>Concord III</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_danville.html')\" class=listlook>Danville</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_decatur.html')\" class=listlook>Decatur</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_grayson.html')\" class=listlook>Grayson</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_greenville.html')\" class=listlook>Greenville</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_may.html')\" class=listlook>Cape May</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_monroe.html')\" class=listlook>Monroe</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_morehead.html')\" class=listlook>Morehead</a><br>";	
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_patriotl.html')\" class=listlook>Patriot I</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_richard.html')\" class=listlook>Cape Ridchard</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_southport.html')\" class=listlook>Southport</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_vincent.html')\" class=listlook>Cape Vincent</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_westwood.html')\" class=listlook>Westwood</a><br>";
	vContentHomeListExcelCapeCod += "<a href='#' onClick=\"funcShowHomeDetail('excel_cape/excel_cape_wilmington.html')\" class=listlook>Wilmington</a><br>";

// Home List - Excel Split Level
var vContentHomeListExcelSplitLevel = "";
	vContentHomeListExcelSplitLevel += "<a href='#' onClick=\"funcShowHomeDetail('excel_splitlevel/excel_splitlevel_7375_brittney.html')\" class=listlook>7375 Brittney</a><br>";
	vContentHomeListExcelSplitLevel += "<a href='#' onClick=\"funcShowHomeDetail('excel_splitlevel/excel_splitlevel_glenridgel.html')\" class=listlook>Glen Ridge I</a><br>";
	vContentHomeListExcelSplitLevel += "<a href='#' onClick=\"funcShowHomeDetail('excel_splitlevel/excel_splitlevel_limeridgel.html')\" class=listlook>Lime Ridge II</a><br>";
	vContentHomeListExcelSplitLevel += "<a href='#' onClick=\"funcShowHomeDetail('excel_splitlevel/excel_splitlevel_timberridgel.html')\" class=listlook>Timber Ridge I</a><br>";
	vContentHomeListExcelSplitLevel += "<a href='#' onClick=\"funcShowHomeDetail('excel_splitlevel/excel_splitlevel_timberridgell.html')\" class=listlook>Timber Ridge II</a><br>";
	
// Home List - Excel Contemporary
var vContentHomeListExcelContemporary = "";
	vContentHomeListExcelContemporary += "<a href='#' onClick=\"funcShowHomeDetail('excel_contemporary/excel_cape_crystallake.html')\" class=listlook>Crystal Lake</a><br>";
	vContentHomeListExcelContemporary += "<a href='#' onClick=\"funcShowHomeDetail('excel_contemporary/excel_cape_malibu.html')\" class=listlook>Malibu</a><br>";
	vContentHomeListExcelContemporary += "<a href='#' onClick=\"funcShowHomeDetail('excel_contemporary/excel_cape_mtlaurel.html')\" class=listlook>Mt. Laurel</a><br>";
	vContentHomeListExcelContemporary += "<a href='#' onClick=\"funcShowHomeDetail('excel_contemporary/excel_cape_pocono.html')\" class=listlook>Pocono</a><br>";
	vContentHomeListExcelContemporary += "<a href='#' onClick=\"funcShowHomeDetail('excel_contemporary/excel_cape_timberhaven.html')\" class=listlook>Timberhaven</a><br>";

// Home List - Excel Easy Living
var vContentHomeListExcelEasyLiving = "";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7281.html')\" class=listlook>7281 Anchor Hill</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7282.html')\" class=listlook>7282 Blue Ridge</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7283.html')\" class=listlook>7283 Wildewood</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7284.html')\" class=listlook>7284 Fairacres</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7285.html')\" class=listlook>7285 Chalco Pointe</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7286.html')\" class=listlook>7286 Echo Hills</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7287.html')\" class=listlook>7287 Bloomfield</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7288.html')\" class=listlook>7288 Brookside</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7289.html')\" class=listlook>7289 Orchard Valley</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7290.html')\" class=listlook>7290 Westgate</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7291.html')\" class=listlook>7291 Edgervale</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7292.html')\" class=listlook>7292 Janbrook</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7293.html')\" class=listlook>7293 Keystone</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7294.html')\" class=listlook>7294 Fairview</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7295.html')\" class=listlook>7295 Hillsdale</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7296.html')\" class=listlook>7296 Glen Springs</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7297.html')\" class=listlook>7297 Mission Cove</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7298.html')\" class=listlook>7298 Highland</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7299.html')\" class=listlook>7299 Deer Park</a><br>";
	vContentHomeListExcelEasyLiving += "<a href='#' onClick=\"funcShowHomeDetail('excel_easy_living/excel_easyliving_model_7300.html')\" class=listlook>7300 Spruce Falls</a><br>";
	
// Home List - Excel Two Story
var vContentHomeListExcelTwoStory = "";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_7373_ultima_t-10.html')\" class=listlook>7373 Utima T-10A</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_7374_ultimaplus_t1.html')\" class=listlook>7374 Ultima Plus T1 A</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_7376_carbondale.html')\" class=listlook>7376 Carbondale</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_bedford.html')\" class=listlook>Bedford</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_continentallll.html')\" class=listlook>Continental III</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_continentallv.html')\" class=listlook>Continental IV</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_conway.html')\" class=listlook>Conway</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_georgetown.html')\" class=listlook>Georgetown</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_hamiltonl.html')\" class=listlook>Hamilton I</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_hamiltonll.html')\" class=listlook>Hamilton II</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_jefferson.html')\" class=listlook>Jefferson</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_litchfield.html')\" class=listlook>Litchfield</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_marion.html')\" class=listlook>Marion</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_meadowbrook.html')\" class=listlook>Meadowbrook</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_somerset.html')\" class=listlook>Somerset</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_sumter.html')\" class=listlook>Sumter</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_surfside.html')\" class=listlook>Surfside</a><br>";
	vContentHomeListExcelTwoStory += "<a href='#' onClick=\"funcShowHomeDetail('excel_two_story/excel_twostory_walden.html')\" class=listlook>Walden</a><br>";
	
// Home List - Excel Townhouse
var vContentHomeListExcelTownhouse = "";
	vContentHomeListExcelTownhouse += "<a href='#' onClick=\"funcShowHomeDetail('excel_townhouse/excel_townhouse_amelia.html')\" class=listlook>Amelia Townhouse</a><br>";
	vContentHomeListExcelTownhouse += "<a href='#' onClick=\"funcShowHomeDetail('excel_townhouse/excel_townhouse_cannondale.html')\" class=listlook>Cannondale Townhouse</a><br>";
	vContentHomeListExcelTownhouse += "<a href='#' onClick=\"funcShowHomeDetail('excel_townhouse/excel_townhouse_dunmore.html')\" class=listlook>Dunmore Townhouse</a><br>";
	vContentHomeListExcelTownhouse += "<a href='#' onClick=\"funcShowHomeDetail('excel_townhouse/excel_townhouse_holbrook.html')\" class=listlook>Holbrook Townhouse</a><br>";
	vContentHomeListExcelTownhouse += "<a href='#' onClick=\"funcShowHomeDetail('excel_townhouse/excel_townhouse_knollridge.html')\" class=listlook>Knoll Ridge Townhouse</a><br>";
	vContentHomeListExcelTownhouse += "<a href='#' onClick=\"funcShowHomeDetail('excel_townhouse/excel_townhouse_preston.html')\" class=listlook>Preston Townhouse</a><br>";
	vContentHomeListExcelTownhouse += "<a href='#' onClick=\"funcShowHomeDetail('excel_townhouse/excel_townhouse_stockdale.html')\" class=listlook>Stockdale Townhouse</a><br>";
	
// Home List - Excel Townhouse
var vContentHomeListExcelDuplex = "";
	vContentHomeListExcelDuplex += "<a href='#' onClick=\"funcShowHomeDetail('excel_duplex/excel_duplex_carlton.html')\" class=listlook>Carlton Duplex</a><br>";
	vContentHomeListExcelDuplex += "<a href='#' onClick=\"funcShowHomeDetail('excel_duplex/excel_duplex_carroll.html')\" class=listlook>Carroll Duplex</a><br>";
	vContentHomeListExcelDuplex += "<a href='#' onClick=\"funcShowHomeDetail('excel_duplex/excel_duplex_fairfax.html')\" class=listlook>Fairfax Duplex</a><br>";
	vContentHomeListExcelDuplex += "<a href='#' onClick=\"funcShowHomeDetail('excel_duplex/excel_duplex_landon.html')\" class=listlook>Landon Duplex</a><br>";
	vContentHomeListExcelDuplex += "<a href='#' onClick=\"funcShowHomeDetail('excel_duplex/excel_duplex_mchenry.html')\" class=listlook>McHenry Duplex</a><br>";
	vContentHomeListExcelDuplex += "<a href='#' onClick=\"funcShowHomeDetail('excel_duplex/excel_duplex_ventura.html')\" class=listlook>Ventura Duplex</a><br>";
	
	
	
	
	
	
	
	
	
	
	