var npictures = 6;
function nextPage()
{
	nextPictures(npictures);
}
function nextPage2()
{
	nextPictures(npictures);
	setTimeout(nextPage3, 2000);
}
function nextPage3()
{
	Effect.Grow("d1", { duration: 3});
}
function prevPage()
{
	previousPictures(npictures);
}
function prevPage2()
{
	previousPictures(npictures);
	setTimeout(prevPage3, 2000);
}
function prevPage3()
{
	Effect.BlindDown("d1", { duration: 3});
}
function hideifo(which)
{
	Element.hide("ifo" + which);
	Element.show("infobutton" + which)
}
function showifo(which)
{
	Element.show("ifo" + which);
	Element.hide("infobutton" + which)
}

