$(document).ready(function(){
    $("#menu li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() { } 
    );
    if (document.all) {
        $("#menu li").hoverClass ("sfHover");
    }
		if(document.getElementById("id")){
      document.getElementById("id").focus();
   }
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};

var linkDisclaimer = "Note: The link you have selected will direct you to a 3rd party website.\n\nPlease review the Privacy Policy of that site, as it may differ from ours.";
function disclaimer(passedWebsite) {
	var oWin;
	if (confirm(linkDisclaimer)) {
		oWin = window.open(passedWebsite,"newWindow");
		if (oWin === null || typeof(oWin) === "undefined") {
			window.location.href = passedWebsite;
		} else {
			return true;
		}
	}
}