$(document).ready(function(){ 
	$(document).pngFix();
	
	$('a.fancyimages').fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 400,
		'zoomOpacity': 100,
		'overlayShow': true,
		'overlayOpacity': 0.5,
		'hideOnContentClick': true
	});
	
	$("input").focus(function(){
		var neuerValue = $(this).attr('value');
		var standardValue = $(this).attr('id');
		if((neuerValue == standardValue)){
			$(this).val('');
		};
	});
	
	$("input").blur(function(){
		var neuerValue = $(this).attr('value');
		var standardValue = $(this).attr('id');
								 
		if(!neuerValue){
			$(this).val(standardValue);
		};
	});

	
});
