function home(image) {
var a = document.getElementById("home"+image+"");
var f = new Array()
f[1] = "photos/home/01.jpg";
f[2] = "photos/home/02.jpg";
f[3] = "photos/home/03.jpg";
f[4] = "photos/home/04.jpg";
f[5] = "photos/home/05.jpg";
var url = f[image];
a.setAttribute('href', url);
myLightbox.start(a);
}

function event(image) {
var a = document.getElementById("event"+image+"");
var f = new Array()
f[1] = "photos/event/01.jpg";
f[2] = "photos/event/02.jpg";
f[3] = "photos/event/03.jpg";
var url = f[image];
a.setAttribute('href', url);
myLightbox.start(a);
}

function resto(image) {
var a = document.getElementById("resto"+image+"");
var f = new Array()
f[1] = "photos/resto/01.jpg";
f[2] = "photos/resto/02.jpg";
f[3] = "photos/resto/03.jpg";
var url = f[image];
a.setAttribute('href', url);
myLightbox.start(a);
}

function plat(image) {
var a = document.getElementById("plat"+image+"");
var f = new Array()
f[1] = "photos/plat/01.jpg";
f[2] = "photos/plat/02.jpg";
f[3] = "photos/plat/03.jpg";
f[4] = "photos/plat/04.jpg";
f[5] = "photos/plat/05.jpg";
var url = f[image];
a.setAttribute('href', url);
myLightbox.start(a);
}