/*//////////////////////////////////////////
/// MENU TOGGLE VISIBILITY
//////////////////////////////////////////*/

function getURL (url_ref) {
	window.location=(url_ref);
}
		
		
/* Menu */
function toggleVisibility(id) {
	var el = $(id);
	if (el.style.display == '' || el.style.display == 'none') {
		el.style.display = 'block';
		return true;
	} else {
		el.style.display = 'none';
		return false;
	}
}

function enableMenu(parent,child) {
	$(parent).addEvent('click',function() {
		var isVisible = toggleVisibility(child);
		if (isVisible) {
			this.style.fontWeight = 'bold';
		} else {
			this.style.fontWeight = 'bold';
		}
	});
}
		

