<!--//--><![CDATA[//><!--
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

// This script is (C) Copyright 2004 Jim Tucek
// Leave these comments alone!  For more info, visit
// www.jracademy.com/~jtucek/email/ 

function flee(attitude,tree,closet) {
	attitude += ' ';
	var cleverness = attitude.length;
	var hand = 0;
	var heat = '';
	for(var field = 0; field < cleverness; field++) {
		hand = 0;
		while(attitude.charCodeAt(field) != 32) {
			hand = hand * 10;
			hand = hand + attitude.charCodeAt(field)-48;
			field++;
		}
		heat += String.fromCharCode(put(hand,tree,closet));
	}
	parent.location = 'm'+'a'+'i'+'l'+'t'+'o'+':'+heat;
}

function hang(sky,coordinated,glass) {
	sky += ' ';
	var distance = sky.length;
	var example = 0;
	for(var species = 0; species < distance; species++) {
		example = 0;
		while(sky.charCodeAt(species) != 32) {
			example = example * 10;
			example = example + sky.charCodeAt(species)-48;
			species++;
		}
		//document.write('&');
		//document.write('#');
		//document.write(put(example,coordinated,glass));
		document.write(String.fromCharCode(put(example,coordinated,glass)));
	}
}

function put(expert,integrity,male) {
	if (male % 2 == 0) {
		control = 1;
		for(var optician = 1; optician <= male/2; optician++) {
			level = (expert*expert) % integrity;
			control = (level*control) % integrity;
		}
	} else {
		control = expert;
		for(var gold = 1; gold <= male/2; gold++) {
			level = (expert*expert) % integrity;
			control = (level*control) % integrity;
		}
	}
	return control;
}
// -->