// JavaScript Document
//Rollover and Preload functions



		<!--- Javascript Rollover code-->

		<!--
		bName = navigator.appName; // Detect if browser is Netscape 3+ or IE 4+
		bVer = parseInt(navigator.appVersion);
		if ((bName == "Netscape" && bVer >= 3) ||
			(bName == "Microsoft Internet Explorer"  && bVer >= 4)) br = "n3";

			else br = "n2";
		
		if (br == "n3") {  
	
		
		
		button1over = new Image; 
		button1over.src="images/nav_code_09.jpg"; 
		button1out = new Image; 
		button1out.src="images/navigation_09.jpg"; 
		
			
		button2over = new Image; 
		button2over.src="images/nav_places_09.jpg"; 
		button2out = new Image; 
		button2out.src="images/navigation_10.jpg";
		
		button3over = new Image; 
		button3over.src="images/nav_products_11.jpg"; 
		button3out = new Image; 
		button3out.src="images/navigation_11.jpg";
		
		button4over = new Image; 
		button4over.src="images/nav_contact_12.jpg"; 
		button4out = new Image; 
		button4out.src="images/navigation_12.jpg";
		
		button5over = new Image; 
		button5over.src="images/blog_on_12.jpg"; 
		button5out = new Image; 
		button5out.src="images/nav_blog_12.jpg";
		
		
		}

		function image_Over(imgName) {
			if (br == "n3") {
				imgOn = eval(imgName + "over.src");
				document [imgName].src = imgOn;
			}
		}

		function image_Out(imgName) {
			if (br == "n3") {
				imgOff = eval(imgName + "out.src");
				document [imgName].src = imgOff;
			}
		}

	
	
	
	//Preload rollover images
	  // array of images  
	  var imgs = new Array(5);    
	    imgs[0] = "images/nav_code_09.jpg";    
	    imgs[1] = "images/nav_places_09.jpg";     
		imgs[2] = "images/nav_products_11.jpg"; 
		imgs[3] = "images/nav_contact_12.jpg";  
		imgs[4] = "images/blog_on_12.jpg";    
	     
		 // preload the images   
		 function preload() {   
		  var tmp = null;   
		   for (var j = 0; j < imgs.length; j++) {  
		       tmp = imgs[j];    
			     imgs[j] = new Image();    
				   imgs[j].src = tmp;    
				} 
		     } 
	  void(preload()); 
		// -->
	
	
		
	
	
	
		
	
	

	
		


