function onload_secondaryNav(){
	var path = "/images/community_logos/";
	/*
	 *	Secondary Navigation links thumbnail images and descriptions.
	 *
	 */
		
	var navArr = [
		[	
			["0-0", ""],
			["Fieldstone: Post Falls, Idaho - Now From the $130's", "fieldstone.jpg"],
			["Cobblestone: Post Falls, Idaho - From the $190's", "cobblestone.jpg"],			
			["Riverside Harbor: Post Falls, Idaho - From the $200's", "riverside-harbor.jpg"],
			["Hawks Nest: Coeur d'Alene, Idaho - From the $114's", "hawks-nest.jpg"],
			["Strawberry Fields : Hayden, Idaho - From the $190's", "strawberry-fields.jpg"],
			["Greensferry Apartments : Post Falls, Idaho - For Rent", "greensferry-apartments.jpg"],
			["Syringa Gardens: Post Falls, Idaho - Premier Age-Restricted Community ", "syringa-gardens.jpg"]
			
		],
		[ 
			["1-0", ""],
			["The Traditions: Airway Heights, Washington - From the $150's", "traditions.jpg"],
			["The Retreat at Northview Estates: North Spokane, Washington - From the $220's", "northview-estates.jpg"],
			["Cimarron: North Spokane, Washington - From the $120's", "cimarron.jpg"],
			["Castlebrooke: North Spokane, Washington - From the $190's", "castlebrooke.jpg"],
			["Sun Ridge (NEW): North Spokane, Washington - Now From the $160's", "sun-ridge.jpg"],
			["Sandy Ridge (NEW): Spokane, Washington - From the $190's", "sandy-ridge.jpg"],
			["Prasada Place (NEW): Spokane Valley, Washington - From the $180's", "prasada-place.jpg"],
			["Parkside at Prairie View (NEW): Spokane Valley, Washington - From the $190's", "parkside.jpg"],
			["Southridge Estates (NEW): Kennewick, Washington - From the low $200's", "southridge-estates.jpg"],
			["Madison Park (NEW): Pasco, Washington - From the $170's", "madison-park.jpg"],
			["Twin Bridges (NEW): Spokane Valley, Washington - From the $220's", "twinbridges.jpg"],]
			
	];
	
	
	
	
	
	/*
	 *	This loop is used to preload secondary navigation link thumbnail images for those links that
	 *		apply. Without preloading these images, there would be a delay showing an image when the
	 *		corresponding links mouseover event occurs.
	 *
	 */
	
	if(document.images){
		for(var i=0; i<navArr.length; i++){
			for(var j=1; j<navArr[i].length; j++){
				var img = new Image(190, 100);
				img.src = path + navArr[i][j][1];
									
			}
			
		}
		
	}
	
	
	
	
	
	/*
	 *	This loop registers a mouseover event for the secondary navigation links.  When a mouseover 
	 *		event occurs a corresponding thumbnail image and short description are displayed. The 
	 *		image paths and short descriptions are located in the "navArr" at the top of this 
	 *		document. In the first "if" conditional "indexOf('secondary-nav')" is being used because 
	 *		there may be more than one class name assigned to the div being referenced, so the 
	 *		specific value must match a search string, otherwise an error will occur. Because this 
	 *		loop targets any div with a class name of "secondary-nav", a "try-catch" statement is 
	 *		needed to prevent an error for secondary navigation links that don't have images or 
	 *		short descriptions, such as the links found under the "Marcopolo Club" and "Travel Store" 
	 *		menus. To see how this works place a javascript alert in the catch section and test the 
	 *		secondary navigation links.
	 *	
	 */
	
	var div = document.getElementsByTagName("div");
	for(var i=0; i<div.length; i++){
		if(div[i].className.indexOf("secondary-nav") != -1){
			var a = div[i].getElementsByTagName("a");
			for(var j=0; j<a.length; j++){
				a[j].index = a[j].id.split("-");
				a[j].onmouseover = function(){
					try{
						this.parentNode.parentNode.parentNode.getElementsByTagName("div")[0].getElementsByTagName("img")[0].src = path + navArr[this.index[0]][this.index[1]][1];
						this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName("p")[0].firstChild.nodeValue = navArr[this.index[0]][this.index[1]][0];
						
					}catch(e){}
					
				}
														
			}
		
		}
							
	}
		
}