// JavaScript Document
$(document).ready(function(){
	
	$('.clearInput').clearInput();
	
	$('.mitglied').hover(
		function(){ $(this).children(".mitgliedFreizeit").show(); },
		function(){ $(this).children(".mitgliedFreizeit").hide(); }
	);	
	
	$("a.fancybox").fancybox({
	  'titleShow'     : true,
		'titlePosition' : 'over',
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'overlayColor'	: '#000',
		'overlayOpacity': 0.9,
	});	
	
});



jQuery.fn.clearInput = function() {
	return this.focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};

