<!-- 
//

var j = 1
imagescontent = new Array
imagescontent[1] = "http://www.einar-schleef.de/Stiftung-Moritzburg/images/stories/EinarWerkgruppen/gouachen/go_001.jpg"
imagescontent[2] = "http://www.einar-schleef.de/Stiftung-Moritzburg/images/stories/EinarWerkgruppen/gouachen/go_002.jpg"
imagescontent[3] = "http://www.einar-schleef.de/Stiftung-Moritzburg/images/stories/EinarWerkgruppen/gouachen/go_003.jpg"
imagescontent[4] = "http://www.einar-schleef.de/Stiftung-Moritzburg/images/stories/EinarWerkgruppen/gouachen/go_004.jpg"
imagescontent[5] = "http://www.einar-schleef.de/Stiftung-Moritzburg/images/stories/EinarWerkgruppen/gouachen/go_005.jpg"
imagescontent[6] = "http://www.einar-schleef.de/Stiftung-Moritzburg/images/stories/EinarWerkgruppen/gouachen/go_006.jpg"
imagescontent[7] = "http://www.einar-schleef.de/Stiftung-Moritzburg/images/stories/EinarWerkgruppen/gouachen/go_007.jpg"

AnzPiccontent = (imagescontent.length-1);

function gallerycontent()
{
	if (j == 1)
		document.getElementById('previouscont').value=""
}

function previmgcontent()
{
	if (j != 1)
	{
		j --
		document.imgcont.src = imagescontent[j]
		document.getElementById('nextcont').value = "Nächstes >"
	}
	if (j == 1)
		document.getElementById('previouscont').value=""
}

function nextimgcontent()
{
	if (j != AnzPiccontent)
	{
		j ++;
		document.imgcont.src = imagescontent[j];
		document.getElementById('previouscont').value="< Vorheriges";
	}

	if (j ==AnzPiccontent)
		document.getElementById('nextcont').value="";

}

// -->