$(document).ready(function(){
	$("ul#navbar li").hover(
		//function() { $("ul", this).fadeIn("fast"); $(this).addClass("shover"); },
		//function() { $("ul", this).hide(); $(this).removeClass("shover"); }
		function() { $(this).addClass("shover"); },
		function() { $(this).removeClass("shover"); }
	);
});

function showhide_fields(box, id)
{
	var i = 0;
	while ( document.getElementById(box+'_'+i) != null ) {
		document.getElementById(box+'_'+i).style.display = "none";
		i++;
	}
	document.getElementById(box+'_'+id).style.display = "block";
}

