// OTTENS

//		Template © N. Ottens
//		Author:  n.ottens@gmail.com
//		All unauthorised use is strictly prohibited
 


function hideElement(i) {		
	var e = document.getElementById(i);
		if (e) { 
			e.className = 'node_hide';  
	}
				
}
				
function showElement(i) { 
	var e = document.getElementById(i); 
		if (e) { 
			e.className = 'node_show'; 
	} 
}

	 
<!--	and		-->


// image rollover

function move_in(img_name,img_src) {
	document[img_name].src=img_src;
	}

	function move_out(img_name,img_src) {
	document[img_name].src=img_src;
	}
	
<!--	and		-->
