/** * @author René Klatt */$j(document).ready(function () {  	// Filial Suche leeren	$j('#zip').click(function(){		if(parseInt($j(this).attr('value')) != $j(this).attr('value')){			$j(this).attr('value', '');		}	});		// Hausbesucher Suche leeren	$j('#visitor_zip').click(function(){		if(parseInt($j(this).attr('value')) != $j(this).attr('value')){			$j(this).attr('value', '');		}	});	});
