// JavaScript Document
$(document).ready(function(){
	
	$('.clearInput').clearInput();
	
	$('.mitglied').hover(
		function(){ $(this).children(".mitgliedFreizeit").show(); },
		function(){ $(this).children(".mitgliedFreizeit").hide(); }
	);	
	
});



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;
		}
	});
};
