﻿ $(document).ready(function(){
   
   
	//Ajax Reloads
	$(".moreArrow.faq").click(function(){
		$(this).parent().find(".reloadFaq").load(document.URL + " .reloadFaq > *");  
		return false;
	});
	
	$(".moreArrow.photos").click(function(){
		$(this).parent().find(".reloadPhotos").load(document.URL + " .reloadPhotos > *");  
		return false;
	});
      
	  
	//PLZ Textfeld leeren
	$(".plz, #plz").focus(
		function() {
			if ($(this).attr('value') == "PLZ") {
				$(this).attr('value', "");
			}
		}
	);
	
	$(".suchbegriff").focus(
		function() {
			if ($(this).attr('value') == "Freier Suchbegriff") {
				$(this).attr('value', "");
			}
		}
	);

	
	$("#plzorname").focus(
		function() {
			if ($(this).attr('value') == "PLZ/Betriebsname") {
				$(this).attr('value', "");
			}
		}
	);
	
	$(".ort").focus(
		function() {
			if ($(this).attr('value') == "Ort") {
				$(this).attr('value', "");
			}
		}
	);
});
