// JavaScript Document
$(document).ready(function(){
	

		/*$('.imgtip').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - ",
		bodyHandler: function() {
		return $($(this).siblings().html());
	},
	id: "exo_sch"
	});*/
						   
						   
	 $(".nav 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); }
        );
    });
};