Event.addBehavior({
	
	/* Form Validator
	-----------------------------------------------------*/
	'form.validate' : RCMS.Validator({'highlightColor':'#831b1e'}),
	
	/* Search Form
	-----------------------------------------------------*/
	'#search_box:focus' : function() {
		if(this.value == 'SEARCH') {
			this.value = '';
		}
	},
	'#search_box:blur' : function() {
		if(this.value == '') {
			this.value = 'SEARCH';
		}
	},
	
	/* Links to be opened in a new window
	-----------------------------------------------------*/
	'a.new_window': function() {
		this.target = "_blank";
	}
	
});
