$(document).ready(function() {
	$(".inputField").attr("value", "Anvandarnamn");

	var text = "Anvandarnamn";
	$(".inputField").focus(function() {
		if($(this).attr("value") == text) $(this).attr("value", "");
	});
	$(".inputField").blur(function() {
		if($(this).attr("value") == "") $(this).attr("value", text);
	});
	$(".inputField2").attr("value", "Sök");

	var text2 = "Sök";
	$(".inputField2").focus(function() {
		if($(this).attr("value") == text2) $(this).attr("value", "");
	});
	$(".inputField2").blur(function() {
		if($(this).attr("value") == "") $(this).attr("value", text2);
	});
	$(".quick1").attr("value", "Fran");

	var text3 = "Fran";
	$(".quick1").focus(function() {
		if($(this).attr("value") == text3) $(this).attr("value", "");
	});
	$(".quick1").blur(function() {
		if($(this).attr("value") == "") $(this).attr("value", text3);
	});
	$(".quick2").attr("value", "Till");

	var text4 = "Till";
	$(".quick2").focus(function() {
		if($(this).attr("value") == text4) $(this).attr("value", "");
	});
	$(".quick2").blur(function() {
		if($(this).attr("value") == "") $(this).attr("value", text4);
	});
});

