// JavaScript Document
var $j = jQuery.noConflict();

$j.fn.hoverClass = function(c) {
	return this.each(function(){
		$j(this).hover( 
			function() { $j(this).addClass(c); },
			function() { $j(this).removeClass(c); }
		);
	});
};

$j(function(){
	$j("#nav_485763 li").hover(
		function() { $j("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
	if (document.all) {
		$j("#nav-one li").hoverClass ("sfHover");
	}
});
