/* Function to initialise the rollover of the dropdown box */
function setRollover(id){
	document.getElementById(id).onmouseover=function(){
		this.getElementsByTagName("div")[0].style.display="block"
		/*this.style.background="url('../resources/images/bg_sectionCat.png') no-repeat"*/
	}
	document.getElementById(id).onmouseout=function(){
		this.getElementsByTagName("div")[0].style.display="none"
		/*this.style.background="url('../resources/images/bg_sectionCat.png') no-repeat"*/
	}	
}

window.onload = function() {
	setRollover('Field1');
}