// JavaScript Document
var px = 6;//mehr=schneller
var timer;
function scrollDenDiv(val){
	clearTimeout(timer);
	d=document.getElementById('thumb_box');
	x=d.scrollLeft;
	if(val==1)x-=px;
	if(val==2)x+=px;
	if(x<=d.scrollWidth-d.offsetWidth+px&&x>=0-px){
		d.scrollLeft=x;
		timer=setTimeout('scrollDenDiv('+val+')',30);
	}
	if(x<0||x>d.scrollWidth-d.offsetWidth){
		clearTimeout(timer);
	}
}

var pics = new Array();
function laden(){
	pics[0]=new Image();
	pics[0].src="images/spacer.gif";
}

function makeBig(imgPath){
//	alert ("werde aufgerufen: "+imgPath);
	window.document.getElementById('bigImage').src=pics[0].src;
//	window.document.getElementById('bigImage').src="images/visuals/Visual_0"+num+".png";
//	window.document.getElementById('bigImage').src="http://www.handwerk-design.de/lib/reflect.php?img=../images/visuals/Visual_0"+num+".png&fade_start=20%&fade_end=0%";
	window.document.getElementById('bigImage').src="http://www.handwerk-design.de/lib/reflect.php?img=.." + imgPath + "&fade_start=20%&fade_end=0%";
	
}
function makeBig_pr(imgPath){
	window.document.getElementById('bigImage').src=pics[0].src;
//	window.document.getElementById('bigImage').src="images/visuals/Visual_0"+num+".png";
	window.document.getElementById('bigImage').src=imgPath;
	/*if (num==22||num==34||num==35){
		window.document.getElementById('bigImage').style.width=360;
	}else{
		window.document.getElementById('bigImage').style.width=640;
	}*/
}

function makeNormal(){
	window.document.getElementById('bigImage').src="images/spacer.gif";
}

function changeFlash(x){
	if (x==2){
		window.document.getElementById('flashOne').style.visibility="hidden";
		window.document.getElementById('flashOne2').style.visibility="visible";
		window.document.getElementById('thumb2').style.width="120px";
		window.document.getElementById('thumb2').style.height="90px";
		window.document.getElementById('thumb1').style.width="60px";
		window.document.getElementById('thumb1').style.height="45px";		
	} else {
		window.document.getElementById('flashOne').style.visibility="visible";
		window.document.getElementById('flashOne2').style.visibility="hidden";
		window.document.getElementById('thumb1').style.width="120px";
		window.document.getElementById('thumb1').style.height="90px";
		window.document.getElementById('thumb2').style.width="60px";
		window.document.getElementById('thumb2').style.height="45px";
	}
}
