$(document).ready(function() {$("#port_splash").splash_slide();}); 

$(document).ready(function () {
  if ($.browser.msie && $.browser.version < 7) return;
  $('#nav li')
	.removeClass('highlight')
	.find('a')
	.append('<span class="hover" />').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
		$span.stop().fadeTo(500, 1);
	  }, function () {
		$span.stop().fadeTo(500, 0);
	  });
	});
});

$(document).ready(function() {
	$('.content, .visitsite').hide()
	$('#port_splash').hoverIntent(function() {
		$('.content, .visitsite').fadeIn(500);
	},
	function() {
		$('.content, .visitsite').fadeOut(750);
	});
});



