$(function(){
	function loginFieldBG(fn){
		var fID = 'input#'+fn;
		if($(fID).val() == ''){
			$(fID).css({"background":"url(/themes/aorc/front-end/gfx/"+fn+".png) 1px 3px no-repeat"})
		}
		else{
			$(this).css({"background":"#fff"});	
		}
		$(fID).focus(function(){
			if($(this).val() == ''){
			$(this).css({"background":"#fff"});
			}
		}).bind('blur', function(){
			if($(this).val() == ''){
			$(this).css({"background":"url(/themes/aorc/front-end/gfx/"+fn+".png) 1px 3px no-repeat"});
			}
		})
	}
	loginFieldBG('username');
	loginFieldBG('password');
	loginFieldBG('searchterm');
})
