// This is a Javascript include file for the EOS template
// ------------------------------------------------------

// The text below will be written on top of each index page.

// The file name can be defined in "settings.js":
// check the variable "introTextfile"

// File Format:
//	This is a JavaScript file.
//	Empty lines and comments are ignored.
//	A comment is all text after a //
//	All other lines must contain valid Javascript code.

// keep this line
document.write("<div class='intro'>")

// start your text here
// Note: If you need to write a " within the text then use \"
document.write("This is my gallery introduction. ")
document.write("And here comes a new line<br>")
document.write("This is my e-mail: <a href='mailto:peterberger@chello.at'>peterberger@chello.at</a> ")
document.write("and here is a link to <a href='http://www.peterberger.at' target='_blank'>www.peterberger.at</a>!")
document.write("<br><br>This text can be changed in the file \"introtext.js\".")
document.write("<br>It will be suppressed when you set the variable \"introTextfile\" to an empty string.")

// keep this line
document.write("</div>")

