	function inputFocus(name){
		var input = document.getElementById(name + 'Fancy');
		if(!input) return;
		input.style.backgroundImage = "url('images/" + name + "-bg-focus.png')";
	}
	
	function inputBlur(name){
		var input = document.getElementById(name + 'Fancy');
		if(!input) return;
		if(input.value != ""){
			input.style.backgroundImage = "url('images/" + name + "-bg-focus.png')";
			
		}
		else{
			input.style.backgroundImage = "url('images/" + name + "-bg.png')";
		}
	}
	

	function initBoxes(){
		inputBlur('username');
		inputBlur('password');
		inputBlur('searchInput');
	}
	
	appendLoader(initBoxes);
