
/* INSERT REPLACEMENT RULES BELOW */

function faux_select_init () {
	
	var hotlink = document.getElementById('faux_select_hotlink');
	var listNode = document.getElementById('faux_select_options');
	
	hotlink.onclick = function () {
		faux_select_show_hide(listNode);
		return false
	}
	
	return false;
};



function faux_select_show_hide (listNode) {
	if (listNode.style.display != 'block' ) {
		listNode.style.display = 'block';
	} else {
		listNode.style.display = 'none';
	}
}