// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

Event.observe(window, 'load', function() {

});

function orover(element){
	for( var x = 0; element.childNodes[x]; x++ ) {
		if (element.childNodes[x].tagName == 'UL') {
			element.childNodes[x].style.display = 'block';
		}
	}
}
function orout(element){
	for( var x = 0; element.childNodes[x]; x++ ) {
		if (element.childNodes[x].tagName == 'UL') {
			element.childNodes[x].style.display = 'none';
		}
	}
}
