$(function  (){
	var email ="Plaats jouw email";

	$('#em').val(email);
	$('#em').focus(function () {
			if ($('#em').val() == email) {
				$(this).val('');
				$(this).css({'color' : '#545F6D'});
			} else {
				$(this).val();
				$(this).css({'color' : '#545F6D'});
			}
			
	});
	$('#em').blur(function () {
			
			if ($(this).val() != "") {
				$(this).val();
				$(this).css({'color' : '#545F6D'});
			}else{
					$('#em').val(email);
					$(this).css({'color' : 'silver'});
			}
	});
	
	$("#incEm").submit(function (){
		$('#itEm').hide();
		$('#loader').fadeIn('slow');
		$.post('aj/save-em.php', {em: $('#em').val(), tok:$("#tok").val()}, function (data){
			var d = data.replace(/^\s*|\s*$/g,'');
			$('#loader').hide();
			if (d == "Bedankt!" ) {
				$("#mess").html(d).hide().fadeIn('slow');
				setTimeout(function() { showInput() }, 2000);
			}else{
				alert(data);
				$('#itEm').show();
			}
			
		})
	});
	$("#footer a").attr("href", "mailto:info@okly.eu");
	function showMe (data) {
		$("#mess").html(data).hide().fadeIn('slow');
		setTimeout(function() { showInput() }, 2000);
	}
	
	function showInput () {
		$('#itEm').fadeIn('slow');
		$("#mess").hide();
		$('#em').val(email);
		$('#em').css({'color' : 'silver'});
	}
	$('img').pngFix( );
})