// JavaScript Document
$(document).ready(function(){
	$('.inputtext').each(function(i){
		$(this).bind('click', function(){
			var name = $(this).attr('name');
			switch(name){
				case 'naam':
					if( $(this).attr('value') == 'Naam:' ){
						$(this).attr('value', '');
					}
				break;
				case 'telefoon':
					if( $(this).attr('value') == 'Telefoon:' ){
						$(this).attr('value', '');
					}
				break;
				case 'email':
					if( $(this).attr('value') == 'E-mail:' ){
						$(this).attr('value', '');
					}
				break;
				case 'woonplaats':
					if( $(this).attr('value') == 'Woonplaats:' ){
						$(this).attr('value', '');
					}
				break;
			}
		});
		$(this).bind('blur', function(){
			var name = $(this).attr('name');
			switch(name){
				case 'naam':
					if($(this).attr('value') == ''){
						$(this).attr('value', 'Naam:');
					}
				break;
				case 'telefoon':
					if($(this).attr('value') == ''){
						$(this).attr('value', 'Telefoon:');
					}
				break;
				case 'email':
					if( $(this).attr('value') == '' ){
						$(this).attr('value', 'E-mail:');
					}
				break;
				case 'woonplaats':
					if( $(this).attr('value') == '' ){
						$(this).attr('value', 'Woonplaats:');
					}
				break;
			}
		});
	});	
	
	$('.contacttextarea').bind('click', function(){
		if($(this).attr('value') == 'Uw vraag:'){
			$(this).attr('value', ''); 
		}
	});
	$('.contacttextarea').bind('blur', function(){
		if($(this).attr('value') == ''){
			$(this).attr('value', 'Uw vraag:'); 
		}
	});
});
