//##########################################################################################

//place our event hook
window.onload = function() {
	//find the new topic buttons
	var NewButtons = PageTemplate.GetNodesByAttribute("data-field","new_topic_button").GetNodes();
	for(var i = 0 ; i < NewButtons.length ; i++) {
		NewButtons[i].onclick = function(Event) {
			location.href = "new-topic.html";
		};
	}
};

//##########################################################################################