$(document).ready(function(){

	$("header#mainhead nav ul li").hoverIntent(function() {
		$(this).find("ul:first").show();
		if ($(this).has("ul").length > 0)
			$(this).find("a:first").addClass("hovering");
	}, function() {
		$(this).find("ul:first").hide();
		$(this).find("a:first").removeClass("hovering");
	});

});

function rot13(str) {
  return str.replace(/[a-zA-Z]/g, function(c) {
    return String.fromCharCode((c <= 'Z' ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26);
  });
}
