/**
 * Application Scripts for marceleichner.de
 */
$(document).ready(function() {
	
	$('body').removeClass('no-js');
	
	/** toggle value **/
	$('input[placeholder]').each(function(index, elm) {
		$(elm).bind('focus.placeholder', function() {
			if ($(this).val() == $(this).attr('placeholder')) $(this).val('');
		}).bind('blur.placeholder', function() {
			if ($(this).val() == '') $(this).val($(this).attr('placeholder'));
		});
		$(elm).trigger('blur.placeholder');
	});
	
});


