var resource = {
	isearch:function(val, el){
		document.getElementById('category').value = val
		document.getElementById('selected').innerHTML = el.innerHTML;
		
	},
	searchFocus:function(){
		var el = document.getElementById('query');
		var old = el.value;
		el.onfocus = function(){
			old = this.value;
			this.value = ''	;
		}
		el.onblur = function(){
			if(this.value === "" || this.value ===" "){
				this.value = old;	
			}
		}
	},
	start:function(){
		this.searchFocus();
	},
	listPerguntas:{
		alt:function(el){
			alert();
		}
	}
};

window.onload = function(){
	resource.start();
};



								

