//$.noConflict();
jQuery(document).ready(function($) {

/* Hint ========================= */
// find all the input elements with title attributes
$('.showhint').hint();
/* End Hint ===================== */
	
/* rot 13 ======================= */	
$("a.antispam").mouseover(dec);
/* End rot 13 =================== */

});



/* rot 13 functions ================== */	
function cod(input) {
	var coding = 'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMabcdefghijklmnopqrstuvwxyzabcdefghijklm';
	
	for (var text = '',i=0;i<input.length;i++) {
		character = input.charAt(i);
		position = coding.indexOf(character);
		if (position > -1)
			character = coding.charAt(position + 13);
		text += character;
	}
	
	return text;
}

function dec() {
	if (this.href.indexOf('mailto:')!=0) {
		this.href=cod(this.href);
	}
}
/* end rot 13 ====================== */	
