function   fixLinkValueGraphic_Button_Sophisticated_2(strLinkValue, bExistingPage, bImportedFileLink)  
		{
			  
			if(!bExistingPage)
			{
				return strLinkValue;
			}
			
			  
			  
			
			return strRelativePathToRoot + strLinkValue;
		}
	
	
		  		
		function   isCurrentPageGraphic_Button_Sophisticated_2(strLinkValue, bExistingPage)   
		{	
			  
			if(!bExistingPage)
			{
				return false;
			}
			
			strLinkValue = strLinkValue.toLowerCase();
			return (strRelativePagePath == strLinkValue);	
		}
	
		  		
		   
			function   textMouseOnGraphic_Button_Sophisticated_2(textObj)   
			{ 
				textObj.style.color='  #FFFFFF  '; 
				textObj.style.fontWeight='  normal  ';
				textObj.style.textDecoration='  none  ';
				textObj.style.fontStyle='  normal  ';
			}  
			function   textMouseOffGraphic_Button_Sophisticated_2(textObj)   
			{ 
				textObj.style.color='  #A300A3  '; 
				textObj.style.fontWeight='  bold  ';
				textObj.style.textDecoration='  none  ';
				textObj.style.fontStyle='  normal  ';
			}
		  		
	
	
		  		
		function   getOnClickGraphic_Button_Sophisticated_2(strLinkValue, strLinkTarget)   
		{ 
			var strOnClick = "";
		
			strOnClick = ' onClick="';
			
			  
			if(strLinkTarget == '_blank')
			{
				strOnClick = 'onClick="window.open(\'' + strLinkValue + '\');"';
			}
			else
			{
				  	
				strOnClick = 'onClick="parent.location = \'' + strLinkValue + '\';"';
			}
			
			return strOnClick;
		}	
		
			
		  
  
		
		var nImageWidth =     125  ;
		var nImageHeight =    46  ;
									
		  
		var nGeneralPadding = 10;				
						
		  
		var nButtonsPerRow =   6  ;  
			
		  
		var nVerticalSpacing =   4  ;
		var nHorizontalSpacing =   10  ;
	
		  		
		  
			
			function   mouseOnGraphic_Button_Sophisticated_2(tdCell)   
			{
				tdCell.style.backgroundImage =   'url( http://www.homestead.com/~media/elements/LayoutClipart/../LayoutClipart/Buttons/White_Paint.gif )';  
			}
			function   mouseOffGraphic_Button_Sophisticated_2(tdCell)  
			{
				tdCell.style.backgroundImage =   'url( http://www.homestead.com/~media/elements/LayoutClipart/../LayoutClipart/Buttons/White_Paint.gif )';  
			}
		  
		
			
		  		
		function   getMouseOverHandlerGraphic_Button_Sophisticated_2(bIsCurrentPage)   
		{
			  	
			  
				  	
				if (bIsCurrentPage) return '';
			  
			
			var strMouseOver = "";
			var strMouseOut = "";
			
			  	
				strMouseOver += '   mouseOnGraphic_Button_Sophisticated_2(this);  ';
				strMouseOut += '   mouseOffGraphic_Button_Sophisticated_2(this);  ';
			  
			
			  	
				strMouseOver += '   textMouseOnGraphic_Button_Sophisticated_2(this);  ';
				strMouseOut += '   textMouseOffGraphic_Button_Sophisticated_2(this);  ';
			  
					 								
			return ' onMouseOver="' + strMouseOver + '" onMouseOut="' + strMouseOut + '"';
		}	
		
		  			
		function   getStyleGraphic_Button_Sophisticated_2(strImg, strFontColor, bIsCurrentPage)   
		{
			  
			var strStyle = ' style="';
			
			strStyle += 'cursor:hand;';	
			strStyle += 'color:' + strFontColor + ';';
			strStyle += 'background-image:url(' + strImg + ');';
			strStyle += 'background-repeat:no-repeat;';
			strStyle += 'background-position:center ';
			
			  
			strStyle += '  center  ; ';			
					
			if(bIsCurrentPage)
			{
				strStyle += 'font-weight:   normal  ; ';
				strStyle += 'text-decoration:   none  ; ';
				strStyle += 'font-style:   normal  ; ';
			}
			else
			{
				strStyle += 'font-weight:   bold  ; ';
				strStyle += 'text-decoration:   none  ; ';
				strStyle += 'font-style:   normal  ; ';
			}

			  
			strStyle += '" ';
			
			return strStyle;
		}
			
		  		
		function   getHTMLGraphic_Button_Sophisticated_2(strDisplayName, strLinkValue, strLinkTarget, nLinkNum, bLastLink, bExistingPage, bImportedFileLink)   
		{
			  
			var nColIndex =   0  ;
			
			var strImg = "  http://www.homestead.com/~media/elements/LayoutClipart/../LayoutClipart/Buttons/White_Paint.gif  ";
			
			  
			var bIsCurrentPage =   isCurrentPageGraphic_Button_Sophisticated_2(strLinkValue, bExistingPage);  
			
			  
			strLinkValue =   fixLinkValueGraphic_Button_Sophisticated_2(strLinkValue, bExistingPage, bImportedFileLink);  
			
			  
			if (bIsCurrentPage) 
			{
				  
					strImg = "  http://www.homestead.com/~media/elements/LayoutClipart/../LayoutClipart/Buttons/White_Paint.gif  ";
				  
				
				strFontColor =   "#FFFFFF"  ;
			} 
			else 
			{
				strFontColor =   "#A300A3"  ;
			}
				
			  	
			var bNetscape = false;
			var strAppName = navigator.appName;
			var appVer = parseFloat(navigator.appVersion);
								
			if ( (strAppName == "Netscape") &&
				(appVer >= 4.0 && appVer < 5) ) {    
				bNetscape = true;
			}
			
			  
			var strHTML = '';
			
			  
			if (nLinkNum == 1) {
				strHTML += '<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0">';
			}
						
			  
			    
		
			  
			  
				strHTML += '<TR>';
			  	
						
			  
			
			strHTML += '<TD NOWRAP HEIGHT="' + nImageHeight + '"';
						
			strHTML += ' ALIGN=  "center"   VALIGN="MIDDLE"';
			
			if(!bNetscape)
			{
				  
				var strStyle =   getStyleGraphic_Button_Sophisticated_2(strImg, strFontColor, bIsCurrentPage);   
				strHTML += strStyle;
			}
			else
			{
				  
				if(bIsCurrentPage)
				{
					strHTML += ' CLASS=  "navBackgroundSelectedGraphic_Button_Sophisticated_2"  ';
				}
				else
				{
					strHTML += ' CLASS=  "navBackgroundGraphic_Button_Sophisticated_2"  ';
				}
			}
			
			if(!bNetscape)
			{		
				  
				var strOnClick =   getOnClickGraphic_Button_Sophisticated_2(strLinkValue, strLinkTarget);   
					
				  
				var strMouseOver =   getMouseOverHandlerGraphic_Button_Sophisticated_2(bIsCurrentPage);  
								
				strHTML += strOnClick + strMouseOver;
			}
			   
			if(bNetscape)
			{
				strHTML += ' width="' + nImageWidth + '"';
			}
						
			strHTML += '>';    		
									
			  
			var strFormattingStart = ''; 
			var strFormattingEnd = '';
			
			if (bNetscape)
			{
				if(bIsCurrentPage)
				{
					  
					
					  
				}
				else
				{
					  
					
					  
						strFormattingStart += '<B>';
						strFormattingEnd = '</B>' + strFormattingEnd;
					  
				}
			}
					
			  

			if(!bNetscape)
			{
				var nDivWidth = nImageWidth;
				  
				  
				strHTML += '<DIV ';
				strHTML += ' STYLE="width:' + nDivWidth + 'px';
				  
				  
				strHTML += '">';   
			}
			
			  
			if(bNetscape)
			{
				  

				  
				strHTML += '<A HREF="' + strLinkValue + '" TARGET="';

				  	
				if(strLinkTarget == '_self')
				{
					strLinkTarget = '_parent';
				}
				
				strHTML += strLinkTarget + '">'; 
			}	
			
						
			  
			strHTML += '<FONT';
			strHTML += ' FACE=  "Times New Roman"  ';
			strHTML += ' CLASS=  "TimesRoman11"  '; 
			
			  
			if(bNetscape)
			{
				strHTML += ' COLOR="' + strFontColor + '"';
			}
		
			strHTML += '>'; 
						
			strHTML += strFormattingStart + strDisplayName + strFormattingEnd;
						
			  
			strHTML += '</FONT>';

			  			
			if(!bNetscape)
			{
				strHTML += '</DIV>';
			}
					
			  
			if(bNetscape)
			{
				  
				  
				strHTML += '</A>';
			}		
					
			  
			strHTML += '</TD>';
		
			  
			  
				strHTML += '</TR>';

				
				  
				  
					if(!bLastLink)
					{
						strHTML += '<TR><TD>';
						strHTML += '<IMG SRC=  "/tp.gif"   HEIGHT="' + nVerticalSpacing + '" WIDTH="1" BORDER="0" ALT="">';
						strHTML += '</TD></TR>';
					}
				  
			  
			
			  
			  
			
			  
			if (bLastLink) 
			{
				strHTML += '</TABLE>';
			}
			
			return strHTML;
		}	
		  
									
		  		
		function   navElementGraphic_Button_Sophisticated_2()  
		{
			  
			if(typeof   counterGraphic_Button_Sophisticated_2   == "undefined")
			{
				  counterGraphic_Button_Sophisticated_2   = 1;
			}
			else
			{
				  counterGraphic_Button_Sophisticated_2   += 1;
			}
			var navID =   counterGraphic_Button_Sophisticated_2  ;
			
			  
			if (navigator.userAgent.indexOf("Mozilla/3") != -1)
			{
				var msg = 'Sorry, since you are using an old version of Netscape, you may not be able to access all the pages in this Web site.';	
				document.write(msg);
			}
			else 
			{
				  
  document.write(  getHTMLGraphic_Button_Sophisticated_2("Home", "Index.html", "_parent", 1,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("About&nbsp;Us", "About_Us.html", "", 2,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("100%&nbsp;Soy&nbsp;Candles", "100% Soy Candles", "_parent", 3,false,true,true)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Unique&nbsp;Candles&nbsp;", "Unique_Candles.html", "_parent", 4,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Aquariums", "Our_Aquarium_Candles.html", "_parent", 5,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Dessert&nbsp;Candles", "Our_Dessert_Candles.html", "_parent", 6,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Drink&nbsp;Candles", "Our_Drink_Candles.html", "_parent", 7,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Jar&nbsp;Candles", "Our_Jar_Candles.html", "_parent", 8,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Air&nbsp;Fresheners", "Fresheners.html", "_parent", 9,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Order&nbsp;Form", "Customer_Order_Form.html", "_parent", 10,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Contact&nbsp;Us", "Contact_Us.html", "", 11,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Feedback", "Feedback_Form.html", "", 12,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("THE&nbsp;GIFT", "THE_GIFT.html", "_parent", 13,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Candle&nbsp;Tips", "Candle_Tips.html", "_parent", 14,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Link&nbsp;Friends", "Our_Link_Friends.html", "_parent", 15,false,true,false)  );  document.write(  getHTMLGraphic_Button_Sophisticated_2("Christian&nbsp;Links", "Christain_Friends.html", "_parent", 16,true,true,false)  );  
			}
		}
			
								
		  		
		function   netscapeDivCheckGraphic_Button_Sophisticated_2()  
		{
			  
				 			
			  			
				
			var strAppName = navigator.appName;
			var appVer = parseFloat(navigator.appVersion);
								
			if ( (strAppName == "Netscape") &&
				(appVer >= 4.0 && appVer < 5) ) {    
				document.write("</DIV>");
			}
		}
	
		  		
		var   counterGraphic_Button_Sophisticated_2;  
			
			
		  		
		  navElementGraphic_Button_Sophisticated_2();  
			
		  		
		  netscapeDivCheckGraphic_Button_Sophisticated_2();