// JavaScript For Image Preloading
// Detect if browser is Netscape 3 + or IE 4 +.
                     browserName = navigator.appName;
                     browserVer = parseInt(navigator.appVersion);
                     if ((browserName == "Netscape" && browserVer >= 3) || 
                     (browserName == "Microsoft Internet Explorer" && browserVer >= 4)) version = "n3"; 
                     else version = "n2";
		     
		      if (version == "n3") {
                      leftNav1on = new Image();
                      leftNav1on.src = "images/about_us_over.gif";
                      leftNav2on = new Image();
                      leftNav2on.src = "images/services_over.gif";
                      leftNav3on = new Image();
                      leftNav3on.src = "images/photo_galleries_over.gif";
                      leftNav4on = new Image();
                      leftNav4on.src = "images/our_farm_over.gif";
                      leftNav5on = new Image();
                      leftNav5on.src = "images/testimonials_over.gif";               
		      		  leftNav6on = new Image();
                      leftNav6on.src = "images/online_shopping_over.gif";
					  leftNav7on = new Image();
                      leftNav7on.src = "images/links_over.gif";
					  leftNav8on = new Image();
                      leftNav8on.src = "images/blog_over.gif";

  
                      leftNav1off = new Image();
                      leftNav1off.src = "images/about_us.gif";
                      leftNav2off = new Image();
                      leftNav2off.src = "images/services.gif";
                      leftNav3off = new Image();
                      leftNav3off.src = "images/photo_galleries.gif";
                      leftNav4off = new Image();
                      leftNav4off.src = "images/our_farm.gif";
                      leftNav5off = new Image();
                      leftNav5off.src = "images/testimonials.gif";
		      	      leftNav6off = new Image();
                      leftNav6off.src = "images/online_shopping.gif";
                      leftNav7off = new Image();
                      leftNav7off.src = "images/links.gif";
					  leftNav8off = new Image();
                      leftNav8off.src = "images/blog.gif";
					  
					  rightNav1on = new Image();
                      rightNav1on.src = "images/weddings_over.gif";
					  rightNav2on = new Image();
                      rightNav2on.src = "images/special_events_over.gif";
					  rightNav3on = new Image();
                      rightNav3on.src = "images/commercial_interiors_over.gif";
					  
					  rightNav1off = new Image();
                      rightNav1off.src = "images/weddings.gif";
					  rightNav2off = new Image();
                      rightNav2off.src = "images/special_events.gif";
					  rightNav3off = new Image();
                      rightNav3off.src = "images/commercial_interiors.gif";
					  
                      }
              function img_act(imgName) {
                      if (version == "n3") {
                      imgOn = eval(imgName + "on.src");
                      document [imgName].src = imgOn;
                      }
              }
              function img_inact(imgName) {
                      if (version == "n3") {
                      imgOff = eval(imgName + "off.src");
                      document [imgName].src = imgOff;
                      }
              }
			  
			  