$(document).ready(function() {
  
  $(".obf").each(function(){  
      var self = $(this);
      var email = this.tagName.toLowerCase() == 'a' ? self.attr('href') : self.html();
      email = email.replace(/[a-zA-Z]/g, function(c){return String.fromCharCode((c<="Z"?90:122)>=(c=c.charCodeAt(0)+13)?c:c-26);});
      if(this.tagName.toLowerCase() == 'a'){
        if(self.html() == self.attr('href')){
          self.html(email);
        }
        self.attr('href','mailto:'+email);
      }else{
        self.html(email)
      }
    });
  
  
	$('#nav .selected > ul').show();
	$('#nav li').hoverIntent(
		function () {
			$(this).children('ul').stop(true, true).show(200);
		},
		function () {
			$(this).not('.selected').children('ul').stop(true, true).hide(200);
		}
	);
});
