// JavaScript Document
function setDropDowns() {
	// get all the divs
	var items = document.getElementsByTagName('div');
	
	// loop the divs and find menus
	for(var i = 0; i < items.length; i++) {
		if(items[i].className == 'dropdown') {
			
			document.getElementById(items[i].id + "List").style.display = "none";
			
			var list = items[i].getElementsByTagName('ul')[0];
			
			items[i].onmouseover = function() {
				this.getElementsByTagName('p')[0].style.background = "url(/css/standard/hoverArrow.gif) no-repeat 90% center";
				document.getElementById(this.id + "List").style.display = "block";
			}
			
			items[i].onmouseout = function () {
				this.getElementsByTagName('p')[0].style.background = "url(/css/standard/upArrow.gif) no-repeat 90% center";
				document.getElementById(this.id + "List").style.display = "none";
			}
		}
	}
}