// JavaScript Document


     /* $(document).ready(function() {

      //Main nav drop-downs

      $('#header ul li').each(function() {

      $(this).mouseover(function() {

      $(this).children('ul').css("display", "block");

      });

      $(this).mouseout(function() {

      $(this).children('ul').css("display", "none");

      });

      });

      });*/
	  
	  
	  
	  
	$(document).ready(function(){
    $("#nav-one li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() { } 
    );
    if (document.all) {
        $("#nav-one li").hoverClass ("sfHover");
    }
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};    
