function clearInput (inputObject, inputValue, eventType) {
	if(eventType=="focus") {
		if(inputObject.value == inputValue) {
			inputObject.value = "";
		}
	}
	if(eventType=="blur") {
		if(inputObject.value == '') {
			inputObject.value = inputValue;
		}
	}
}

/*auskommentiert, weil Probleme mit im IE verursacht
$(document).ready(function() {
	$("#iframe").fancybox({
		'width'				: 668,
		'height'			: 583,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayOpacity'	: 0.7
	});
	$("#iframe2").fancybox({
		'width'				: 668,
		'height'			: 583,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayOpacity'	: 0.7
	});

	$("#iframe3").fancybox({
		'width'				: 668,
		'height'			: 583,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayOpacity'	: 0.7
	});



});
*/