/**
 * @author Joe Ray Gregory
 * @copyright Joe Ray Gregory
 * create date 29.01.2008 20:50 Uhr
 * 
 * This Script based on the great Mootools Engine
 */
	function change() {
	$('headline').firstChild.nodeValue = 'Wählen Sie Ihre Resourcen aus';
	$('display-text').setStyle('display', 'none');
	$('display-form').setStyle('display', 'block');
	}
window.onload = function() {
	var inputs = $$('.field');
	var c = inputs.length;
	
	for(i=0; i<c; i++) {
		inputs[i].onfocus = function() {
			this.setStyles({
				'background':'#fefdf5',
				'border-color':'#d8d1bb'
			});
		}
		inputs[i].onblur = function() {
			this.setStyles({
				'background':'#fbfbfb',
				'border-color':'#b5bdc7'
			});
		}
	}
}
			