$(document).ready(function() {
   	init();
});

function init(){
	
	$('input').focus(function() {
		if(this.value == "namn" || this.value == "epost" || this.value == "mobil") {
			this.value = "";
		}
	});
	
	$('input#namn').blur(function() {
		if(this.value == "") {
			this.value = "namn";
		}
	});
	$('input#epost').blur(function() {
		if(this.value == "") {
			this.value = "epost";
		}
	});
	$('input#mobil').blur(function() {
		if(this.value == "") {
			this.value = "mobil";
		}
	});
	
}
