function init() {
	if(document.f && document.f.process) document.f.process.value = "1";
}

$(document).ready(function () {

	$(".nav").bind("mouseenter",function (){
		$(this).addClass("over");
		$("#menu" + $(this).attr("id").substring(3)).addClass("display");
	});

	$(".nav").bind("mouseleave",function (){
		$(this).removeClass("over");
		$("#menu" + $(this).attr("id").substring(3)).removeClass("display");
	});

});
