function globalOnload() {

	$(document).ready(function(){
		$("#nav li").hover(
			function(){ $("ul", this).fadeIn("fast"); },
			function(){ }
		);
		if (document.all) {
			$("#nav li").hoverClass ("sfhover");
		}

		$(".rounded").corner("bite");

		$("#fdbk_tab").fancybox({
			'hideOnContentClick': false,
			'frameHeight': 425,
			'frameWidth': 427,
			'callbackOnShow': function() {
				$('#feedbackForm').ajaxForm({
						target: '#thankyou',
						success: function() {
							$('#thankyou').toggle('slow');
							$('#feedbackForm').toggle('slow');
						}
				});
				$(':input:visible:enabled:first').focus(); }
		});

	});

	$.fn.hoverClass = function(c) {
		return this.each(function(){
			$(this).hover(
				function() { $(this).addClass(c);  },
				function() { $(this).removeClass(c); }
			);
		});
	};
	
}
