var search_default = 'Search';
	

Behaviour.register(
	{
		'#s' : function(e) {
			e.onfocus = function() {
				if (this.value == search_default)
				{
					this.className = '';
					this.value = '';
				}
			}
			e.onblur = function() {
				if (this.value == '' || this.value == search_default)
				{
					this.className = 'nosearch';
					this.value = search_default;
				}
			}
		},
		'#header' : function(e) {
			e.onmouseover = function() {
				if (this.className != 'hover')
					this.className = 'hover';
			}
			e.onmouseout = function() {
				if (this.className != '')
					this.className = '';
			}
		}
	}
);

Behaviour.addLoadEvent(
	function() {
		document.getElementById('s').onblur();
	}
);