<!--

function print_content_div() {

	window.print();

}

/**************************************************************
show_this_layer script
first hides all layers
then shows the layer connected with the corresponding mouseover
2004-12-16, Tom van Gemert, Trimedia Interactive Projects
http://www.trimedia.nl
**************************************************************/


function show_this_layer(id,group) {

	       if (group == 'casual1') {
		lay_array = new Array("leeg","blanche","mali","noctah","lata","shanta","irina");
	} else if (group == 'gold') {
		lay_array = new Array("leeg","fleurrose","bluesilver","pearlolive","oliveflower","pbronze","pearlyred");
	} else if (group == 'romantisch') {
		lay_array = new Array("leeg","amelie","bluebelle","printemps","tischa","navee","goldyred");

	}

	var layer_length = lay_array.length;

	//alert(layer_length);

	foto_box = document.getElementById("foto");
	obj = foto_box.getElementsByTagName("div");

	for (i=0; i<layer_length; i++) {
		layer = lay_array[i];
		obj[layer].style.display = 'none';
	}

	obj[id].style.display = 'block';

}

function openVideoWin(file,window) {

     var mode = '0';
     msgWindow=open('',window,'status=yes,scrollbars=no,resizable=yes,menubar=no,top=10,left=10,width=360,height=500');
     msgWindow.location.href = file;
     if (msgWindow.opener == null) msgWindow.opener = self;
	 msgWindow.focus();

}

function openImgWin(file,window) {

     var mode = '0';
     msgWindow=open('',window,'status=yes,scrollbars=no,resizable=yes,menubar=no,top=10,left=10,width=800,height=600');
     msgWindow.location.href = file;
     if (msgWindow.opener == null) msgWindow.opener = self;
	 msgWindow.focus();

}

function openBestelWin(file,window) {

     var mode = '0';
     msgWindow=open('',window,'status=yes,scrollbars=no,resizable=yes,menubar=no,top=10,left=10,width=591,height=700');
     msgWindow.location.href = file;
     if (msgWindow.opener == null) msgWindow.opener = self;
	 msgWindow.focus();

}

function openBestelWin2(file,window) {

     var mode = '0';
     msgWindow=open('',window,'status=yes,scrollbars=no,resizable=yes,menubar=no,top=10,left=10,width=720,height=400');
     msgWindow.location.href = file;
     if (msgWindow.opener == null) msgWindow.opener = self;
	 msgWindow.focus();

}

/**************************************************************
Standards Compliant Rollover Script
Author : Daniel Nolan
http://www.bleedingego.co.uk/webdev.php
**************************************************************/

function initRollovers() {
	if (!document.getElementById) return

	var aPreLoad = new Array();
	var sTempSrc;
	var aImages = document.getElementsByTagName('img');

	for (var i = 0; i < aImages.length; i++) {

		if (aImages[i].className == 'imgover') {

			var src = aImages[i].getAttribute('src');
			var ftype = src.substring(src.lastIndexOf('.'), src.length);
			var hsrc = src.replace(ftype, '_on'+ftype);

			aImages[i].setAttribute('hsrc', hsrc);

			aPreLoad[i] = new Image();
			aPreLoad[i].src = hsrc;

			aImages[i].onmouseover = function() {
				sTempSrc = this.getAttribute('src');
				this.setAttribute('src', this.getAttribute('hsrc'));
			}

			aImages[i].onmouseout = function() {
				if (!sTempSrc) sTempSrc = this.getAttribute('src').replace('_on'+ftype, ftype);
				this.setAttribute('src', sTempSrc);
			}

		}

	}
}

//-->