// JavaScript Document
function loadLargepicture(img, title, desc){
		var obj=document.getElementById('imgcontainer');
		var obj1=document.getElementById('title');
		var obj2=document.getElementById('desc');
		
		var urli = '../pictures/large/'+img;
		
		obj.style.backgroundImage = "url("+urli+")";
		obj1.innerHTML = title;
		obj2.innerHTML = desc;
		
	}
	
	function autoHeight(theIframe)
	{
			putCMS();
			var theDocument = theIframe.contentWindow.document;
			var theHeight = theDocument.getElementsByTagName('body')[0].scrollHeight;

			
			theIframe.scrolling = 'no';
			theIframe.style.overflow = 'hidden';
			theIframe.frameBorder = 0;
			theIframe.height = theHeight+50;
			
	}
	
	function checkColouring(src){
		var obj = document.getElementById(src);
		obj.style.cursor = 'pointer';
	}
	
	function changeMainframe(src){
		var obj=document.getElementById('mainframe');
		obj.src = '../'+src+'/';
		
		document.getElementById('dirigente').style.backgroundColor = '#6e746e';
		document.getElementById('dirigente').innerHTML = '<img src="../images/dirigente_w.png" />';
		document.getElementById('agenda').style.backgroundColor = '#6e746e';
		document.getElementById('agenda').innerHTML = '<img src="../images/agenda_w.png" />';
		document.getElementById('contact').style.backgroundColor = '#6e746e';
		document.getElementById('contact').innerHTML = '<img src="../images/contact_w.png" />';
		document.getElementById('gastenboek').style.backgroundColor = '#6e746e';
		document.getElementById('gastenboek').innerHTML = '<img src="../images/gastenboek_w.png" />';
		document.getElementById('reportoire').style.backgroundColor = '#6e746e';
		document.getElementById('reportoire').innerHTML = '<img src="../images/repertoire_w.png" />';
		
		document.getElementById(src).style.backgroundColor = 'white';
		document.getElementById(src).innerHTML = '<img src="../images/'+src+'_b.png" />';
		
		
	}
