// 21. Internat. Wirtaschaftsfilmpreis / Navigation
// mass:werk 2004; N. Landsteiner; www.masswerk.at


var imgpath="../images/";
var imgNames=new Array("grandprix", "anmeldung", "reglement", "jury", "programm", "location", "preise", "kontakt", "partner", "streams");
var imgRef=new Array();
var activeimage='';

if (document.images) imgPreLoad();

function imgPreLoad() {
	for (var i=0; i<imgNames.length; i++) {
		var n=imgNames[i]+'_lo';
		imgRef[n]=new Image();
		imgRef[n].src=imgpath+'nav_'+n+'.gif';
		n=imgNames[i]+'_hi';
		imgRef[n]=new Image();
		imgRef[n].src=imgpath+'nav_'+n+'.gif'
	}
}

function setHi(imgid) {
	if (document.images) {
		if (activeimage) document.images['nav_'+activeimage].src=imgRef[imgid+'_lo'].src;
		document.images['nav_'+imgid].src=imgRef[imgid+'_hi'].src;
		activeimage=imgid
	}
}

function setLo(imgid) {
	if (document.images) {
		if ((activeimage) && (activeimage==imgid)) {
			document.images['nav_'+activeimage].src=imgRef[imgid+'_lo'].src;
			activeimage=''
		}
	}
}

function pagePrint() {
	if (window.print) {
		setTimeout('self.print()',20)
	}
	else {
		alert('Diese Funktion wird leider von Ihrem Webbrowser nicht unterstützt.\nBenutzen Sie bitte den Print-Button Ihres Browsers oder wählen Sie die Druckfunktion aus dem Datei- bzw. Ablagemenu.');
	}
}