// JavaScript Document


function jumpToEditMode() {
	document.location.href="index.php?login=start&menuid="+menuid;
}

function getkey(keyStroke) {
	eventChooser = event.keyCode;
	if (eventChooser==20) jumpToEditMode();
}

function tickInit() {
	
	if (editmode=="") {	
		document.onkeypress=getkey;
	}
  
}


jQuery(document).ready(function() {
    if (editmode!='content') {
    jQuery(".picasa_album").each(function(){
	var album = jQuery.trim($(this).text());
	if (album!='') album = '.';	
	$(this).EmbedPicasaGallery('104512733398316474355',{	
		loading_animation: 'css/loading.gif',
		size: 144,
		msg_loading_list: 'Albums laden',
		msg_back: 'Terug naar het overzicht'
    	});	
    });
	}
});




