/* 
 * @author Brent Hamby
 */
	
	
$(document).ready(function(){
    $("#nav-one li").hover(
        function(){ $("ul", this).show(); }, 
        function(){ $("ul",this).hide();  } 
    );
    if (document.all) {
        $("#nav-one li").hoverClass ("sfHover");
    }
    setTimeout(function(){
        $("#logo").fadeIn("slow");
    },600);
	try{
		pageRelative();
      }catch(e){}
	
	if(document.all){
		$(".nav").css("margin-left","100px");
		$("#ebmkungfu").css("margin-left","100px");
      }


});

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

