function addEvents() {
	document.getElementById("region").onchange= function() { doAJAX('action=getNeighbourhoods&region_id=' + this.value); };
}

function addHomeEvents() {
	document.getElementById('news_slider').onmouseover = function() {
 		$("#news_slider").tabs('rotate' , 0);
	}
}

addLoadEvent(addHomeEvents);
addLoadEvent(addEvents);