$(document).ready(function(){
	/*
		$("#nav-one li").hover(
		  function(){ $("ul", this).fadeIn("fast"); }, 
			function() { } 
		);
	*/
	if (document.all) {
		$("#nav-one li").hoverClass ("sfHover");
	}




/*
	$("#nav-one li").mouseover( function() {
		if(jQuery.browser.msie) { $("#bn").hide(); }	
		else { $("#bn").css( "margin-top","-600px" ); }
	} );
	$("#nav-one li").mouseout( function() { 
		if(jQuery.browser.msie) { $("#bn").show(); }	
		else { $("#bn").css( "margin-top","0" ); }
	} );
*/

	$("#nav-one li").mouseover( function() {
		if($("#nav-one li.firstEb").mouseover)  {  };
		$("#ticker").css( "margin-top","-600px" );	
	} );
	$("#nav-one li.firstEb").mouseout( function() { 
		$("#ticker").css( "margin-top","0" );	
	} );




});
	  
$.fn.hoverClass = function(c) {
		return this.each(function(){
			$(this).hover( 
				function() { $(this).addClass(c); },
				function() { $(this).removeClass(c); }
			);
		});
};	  
