// Codé avec Prototype 1.5

var EVENT_LOAD = 'load';
var EVENT_CLICK = 'click';
var EVENT_CHANGE = 'change';
var EVENT_FOCUS = 'focus';
var EVENT_BLUR = 'blur';
var EVENT_MOUSEOVER = 'mouseover';
var EVENT_MOUSEOUT = 'mouseout';

var Global = Class.create();
Global.prototype = {
	
	initialize:function() {
		
	},
	
	_initialize:function() {
		
	}
}

// Form border effect 

function onfocusBorder(id) {
	document.getElementById(id).style.background = '#fafcfc';
	document.getElementById(id).style.border = '1px solid #2c8dce';
}

function noBord(id) {
	document.getElementById(id).style.background  = '#fff';
	document.getElementById(id).style.border = '1px solid #d9d9ce';
}