Event.observe(window, 'load', function() {
  do_it();
});

function do_it(){
  $('hideme').hide();
	addSwitchLink();
}

function undo_it(){
	$('hideme').show();
	$('switch_link').hide();
}

function addSwitchLink(){
	var linkItself = document.createElement("a");
	linkItself.setAttribute('href','#');
	linkItself.setAttribute('id','switch_link');
	linkItself.onclick = function() { undo_it(); return false }
	
	var linkText = document.createTextNode('Klik hier als je niet alleen op de foto staat.');
	linkItself.appendChild(linkText);
	
	var WhereToPutIt = $("stap1");
	WhereToPutIt.appendChild(linkItself);
}
