<!-- hide this stuff from other browsers 
	var id = 0;
			
	function toggleit(id) {
		if (document.getElementById(id).style.display == 'none' ) {
			document.getElementById(id).style.display = "";	
			document.getElementById('nav03').className = 'selected';
		}
		else {
			document.getElementById(id).style.display = "none";
			document.getElementById('nav03').className = '';			
		}	
	}

	function changeProduct(cid) {
		id = cid;
		//Change Product Image
		document.getElementById('prodimg').src = products[id][0].src;
		//Change Product Text
		document.getElementById('txt').innerHTML = products[id][1];
		
		/*Check Next Link
		if (products[id+1]== null) {
			document.getElementById('nextlink').style.display = "none";	
		}	
		else {
			document.getElementById('nextlink').style.display = "";				
		}
		//Check Previous Link
		if (products[id-1]== null) {
			document.getElementById('prevlink').style.display = "none";	
		}	
		else {
			document.getElementById('prevlink').style.display = "";				
		}	
		*/
	}
	
	function nextProduct() {
		id = id + 1;
		// Is New Product ID valid?
		if (products[id] != null) {
			changeProduct(id);
		}	
		else {
			id = id - 1;
		}			
	
	}
	
	function previousProduct() {
	id = id - 1;
		// Is New Product ID valid?
		if (products[id] != null) {
			changeProduct(id);
		}	
		else {
			id = id + 1;
		}	
	}	



// end hiding javascript -->
