function layout() {
	
	if(document.getElementById){
	
		 if(navigator.appName == "Microsoft Internet Explorer") {
			obj = document.all["content"];

			var newh = document.body.offsetHeight;

			obj.style.height = newh+"px";
			
		 }else{
			obj = document.getElementById("content");

			var newh = window.innerheight;

			obj.style.height = newh+"px";
		  }
		  
	}	
	
}

function show(dir,count) {	
	
	goOn = true;
	
	if (dir == 'start') {
		activePhoto = 1;
		var obj = 1;
	}else{
		if (dir == 'right' && activePhoto < count) {
			hide(activePhoto);	
		}
		if (dir == 'left' && activePhoto > 1) {
			hide(activePhoto);	
		}
	}
	
	if (dir == 'left') {
		var obj = activePhoto - 1;
		if (activePhoto == 1) {
			goOn = false;
		}
	}
	
	if (dir == 'right') {
		var obj = activePhoto + 1;
		if (activePhoto == count) {
			goOn = false;	
		}
	}
	
	if (goOn == true) {
	
		$("div.photo"+obj).fadeIn(400);	
	
		activePhoto = obj;

	}	
		
}

function hide(obj) {
	
	$("div.zimmer"+obj).fadeOut(400);	
	
}

$(document).ready(function(){
		
	layout();	
	$('div.page').fadeIn(500);
		
});


function send(name,domain,tld) {
    document.location = "mailto:" + name + "@" + domain + "." + tld;
}

