function navi()	{
	this.idcount	= 0;
	this.subidcount	= 0;
	
	this.init_old		= function()	{
		var obj	= this;
	
		$("#subnavibar").hide();
		
		$("#navibar ul li.mnavili").mouseover(function(){
			$(this).find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click
			$(this).hover(function() {
			}, function(){
				$(this).find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
			});
		});
		
	}
	this.init			= function()	{
		$("#subnavibar").hide();

		$("#nav-one li").hover(
			function(){ $("ul", this).fadeIn("fast"); }, 
			function() { } 
		);
	  	if (document.all) {
			$("#nav-one li").hoverClass ("sfHover");
		}
		 
			
	}
	
}