// JavaScript Document

/**$(document).ready(function() {
	
	// Anpassen der Newsletter-Abo Formular
	$('label[for=email]').hide();
	$('#newsletterAbo').css({ 'background-position' : '20px 50px'});
	
	// Elemente um Value zu ermitteln
	var email = $('#email');
	
	// Value ermitteln
	formValue(email);
});

// Value ermitteln
function formValue(formElement) {
	formElement.each(function() {
		var attrTitle = $(this).attr('title');
		
		if($(this).val() == '' || $(this).val() == attrTitle) {
			$(this).val(attrTitle).css({'color' : '#666'});
		}
		
		$(this).focus(function() {
			if($(this).val() == attrTitle) {
				$(this).val('').css({'color' : '#333'});
			}
		}).blur(function() {
			if($(this).val() == '') {
				$(this).css({'color' : '#666'}).val(attrTitle)
			}
		});
	});
}**/
