function mail() {
var name, at, domain, x; x=25; name="jozo.mak"; at="-"; domain="gmail.com";
if (x=25) {at="&#64;"};
x=x-15-5*2+x*x-625;
if (x=10) {document.write(name,at,domain)};
}

$(document).ready(function(){
			$("#nav-one li").hover(
				function(){ $("ul", this).fadeIn("def"); }, 
				function() { } 
			);
	  	if (document.all) {
				$("#nav-one li").hoverClass ("sfHover");
			}
	  });

	  
		$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};