	
	function set_color_menu( color , href ){
		
		var ar_bg = document.getElementsByName("groot");
		var ar_href_menu = document.getElementById("menu").getElementsByTagName("a");
		var ar_href_head = document.getElementById("head").getElementsByTagName("a");
		var ar_input = document.getElementById("head").getElementsByTagName("input");
			
				
		for (i=0; i<ar_bg.length; i++) {
			
			ar_bg[i].style.backgroundImage = 'url(../images/colors/' + color + '_menu.png)';
		}
			
		for (i=0; i<ar_href_menu.length; i++) {
			
			ar_href_menu[i].style.color = href;
		}
		
		for (i=0; i<ar_href_head.length; i++) {
			
			ar_href_head[i].style.color = href;
		}
		
		for (i=0; i<ar_input.length; i++) {
			
			ar_input[i].style.color = href;
		}
	
		
	}
	
	
	function set_color_main( color , href ){
		
	
		var ar_bg = document.getElementsByName("medium");
		var ar_href = document.getElementById("main").getElementsByTagName("a");
		var ar_input = document.getElementById("main").getElementsByTagName("input");

				
		for (i=0; i<ar_bg.length; i++) {
			
			ar_bg[i].style.backgroundImage = 'url(../images/colors/' + color + '_main.png)';
		}
				
		for (i=0; i<ar_href.length; i++) {
			
			ar_href[i].style.color = href;
		}
		
		for (i=0; i<ar_input.length; i++) {
			
			ar_input[i].style.color = href;
		}
	
		
	}
	
	
	function set_color_right( color , href ){
		
	
		var ar_bg = document.getElementsByName("small");
		var ar_href = document.getElementById("right").getElementsByTagName("a");
		var ar_input = document.getElementById("right").getElementsByTagName("input");
			
			
		for (i=0; i<ar_bg.length; i++) {
		
			ar_bg[i].style.backgroundImage = 'url(../images/colors/' + color + '_right.png)';	
		}	
		
		for (i=0; i<ar_href.length; i++) {
			
			ar_href[i].style.color = href;
		}
		
		for (i=0; i<ar_input.length; i++) {
			
			ar_input[i].style.color = href;
		}
	
		
	}
	
	function load_image(){
		
		
			
		if (document.getElementById("input_afbeelding").value != ''){
			
			scroll(0,0);
			document.getElementById("load").style.display = 'block';
			document.getElementById("load_image").style.display = 'block';
		}
		

	}

