// config

// fade background
var fade2black = document.createElement("div");
fade2black.id = "fade2black";
fade2black.style.position = "fixed";
fade2black.style.zIndex = "300";
fade2black.style.display = "none";
fade2black.style.top = "0px";
fade2black.style.left = "0px";
fade2black.style.height = "100%";
fade2black.style.width = "100%";
fade2black.style.backgroundColor = "#5A5A5C";
fade2black.style.opacity = "0";
fade2black.style.filter = "alpha(opacity=0)";

// innner div
var blocker = document.createElement("div");
blocker.id = "blocker";
blocker.align = "center"
blocker.style.position = "absolute";
blocker.style.zIndex = "301";
blocker.style.height = "100%";
blocker.style.width = "100%";
blocker.style.top = "0px";
blocker.style.left = "0px";
blocker.style.display = "none";

// other stuff
var path_thumbnail = "/development/cybertronics/image.php?src={image}&w=220&h=220" // {image} will be replaced with the path
var path_image = "/development/cybertronics/image.php?src={image}" // {image} will be replaced with the path
var innerCSSclass = "VAGalleryBox";
var text_Weiter = "n&auml;chstes Bild &gt;";
var text_Zurueck = "&lt; vorheriges Bild";
var text_Bild = "Bild";
var text_von = "von";

//test function if config is included
function galleryConfigIncluded() { return true; }