
$j(document).ready(function(){
	$j("#nav-one li").hover(
		function(){ $j("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
	if (document.all) {
		$j("#nav-one li").hoverClass ("sfHover");
	}
});

$j.fn.hoverClass = function(c) {
	return this.each(function(){
		$j(this).hover( 
			function() { $j(this).addClass(c);  },
			function() { $j(this).removeClass(c); }
		);
	});
};	
/* 
Code Highlighting 
Courtesy of Dean Edwards star-light 
http://dean.edwards.name/my/behaviors/#star-light.htc
	- with jQuery methods added, of course
*/



















