$(document).ready(function() {
	
	$('#login-input').css('color', '#bbb');
	
	$('#login-input').bind('focus', function() {
		if ($(this).val() == 'bijv. example@example.com')
		{
			$(this).css('color', '#878787');
			$(this).val('');
		}
	});
	
	$('#login-input').bind('blur', function() {
		if ($(this).val() == '')
		{
			$(this).css('color', '#bbb');
			$(this).val('bijv. example@example.com');
		}
	});	
	
});
