// JavaScript Document
hoverMenu_speed=200; //ms
hoverMenu=function(controlElement,menuElement){
	f=new Object();
	f.menuElement=$(menuElement);
	hoverMenu_hide.apply(f);
	$(controlElement).hover($.proxy(hoverMenu_show,f),$.proxy(hoverMenu_hide,f));
}
hoverMenu_show=function(){
	this.menuElement.fadeIn(hoverMenu_speed);
}
hoverMenu_hide=function(){
	this.menuElement.fadeOut(hoverMenu_speed);
}
