
$(document).ready(function(){

	$('.preValue').focus(function (){
		$(this).data('preValue', $(this).attr('value'));
		$(this).attr('value', '');
		$(this).removeClass('preValue');
	});

	$('.preValue').blur(function (){
		if($(this).attr('value') == ''){
			$(this).attr('value', $(this).data('preValue'));
			$(this).addClass('preValue');
		}
	});
});

function doSearch(plz){
	if(plz.length < 5){
		$("#result").fadeOut();
		return;
	}
	$.post('search.php', {zip: plz}, function (data){
		if(data.length <= 5){
			if (plz.length == 5) {
				alert('PLZ konnte nicht gefunden werden!');
			}
			$("#result").fadeOut();
			return;
		}
		$("#result").html(data);
		$("#search").fadeOut();
		$("#result").fadeIn();
	});
}

function closeSearch(){
	$("#result").fadeOut();
	$("#search").children('form').children('input').attr('value','');
	$("#search").fadeIn();
	return;
}

