Ext.onReady(function(){
	
	var s = Ext.get('s');
	if(!s.getValue()){
		s.dom.value = 'Search...';
	}
	s.on({
		'focus': function(){
			if (this.dom.value == 'Search...') {
				this.dom.value = '';
			}
		},
		'blur': function(){
			if (!this.dom.value) {
				this.dom.value = 'Search...';
			}
		}, 
		scope: s
	});
});
