function rcabanner() {
    var els = document.getElementById('rcabanner');
	els.onmouseover = function() {
		this.className += ' hover';
	}
	els.onmouseout = function() {
		this.className = this.className.replace(/ ?hover/, '');
	}
}