$(function() {
	$(":text").focus(function() {
    	if(this.value == this.title) {
    		this.value = "";
    	}
    });
	
	$(":text").blur(function() {
    	if(this.value == "") {
    		this.value = this.title;
    	}
    });
	
	$("textarea").focus(function() {
		if($(this).html() == this.title) {
			$(this).html("");
		}
	});

	$("textarea").blur(function() {
		if($(this).val() == "") {
			$(this).html(this.title);
		} 
	});
});

function sendContactForm() {
	$(":text").each(function(i) {
		if(this.title == this.value)
			this.value = "";
	});
	$("#onlineKontaktForm").submit();
}

function sendApplicationForm() {
	$(":text").each(function(i) {
		if(this.title == this.value)
			this.value = "";
	});
	$("#bewerbungForm").submit();
}

function sendCallbackForm() {
	if($("#cbName").val() == $("#cbName").attr("title") || $("#cbTelephone").val() == $("#cbTelephone").attr("title")) {
		$("#cbErrMsg").show();
	} else {
		$("#cbErrMsg").hide();
		$("#callbackForm").submit();
	}
}
