$(function () {

// prepare document
	$('label, form br').hide();
	
	
// contact form
	$('label').each(function(){
		label = $(this).html();
		complement = "#"+$(this).attr("for");
		$(complement).val(label);
	});
	$('<p class="note"><strong>Super!</strong> Du erhälst nun unseren regelmäßigen Newsletter.</p>')
		.hide()
		.insertBefore('form')
		.click(function(){
			$(this).fadeOut();
		});
	
	
	// hide and reveal description
	$('input,textarea').focus(function() {
		// hide success message in case 
		// it is still visible after previous submit:
		$('.note').fadeOut();
		
		value = $(this).val();
		reference = $(this).attr("id");
		this.defaultValue = $('label[for=' + reference + ']').html();
		if (value == this.defaultValue){
			this.value = '';
		}
		if(value != this.defaultValue){
			this.select();
		}
	}).blur(function() {
		if ($.trim(this.value) == ''){
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});
	
	
	
	$("a[rel=gallery]").fancybox({
		'width'				: '75%',
		'height'				: '75%',
		'autoScale'			: false,
		'transitionIn'		: 'fade',
		'transitionOut'	: 'fase',
		'titlePosition'	: 'inside',
		'overlayOpacity'	: 0.6
	});
});
