jQuery(function($) {
	$('#mainMenu li').hover(
		function() {
			$(this).find('a').stop().animate({ opacity: 1 },100);
		},
		function() {
			$(this).find('a').stop().animate({ opacity: 0.01 },100);
		}
	);
	$('a.mt').each(function() {
		var str = $(this).attr('href').replace('.com','.uh').
			replace(/[a-zA-Z]/g,function(c) {
			return String.fromCharCode((c <= "Z" ? 90 : 122) >= 
				(c = c.charCodeAt(0) + 13) ? c : c - 26);
		});
		$(this).attr('href','mailto:' + str).text(str);
	});
	/*
	var str = '',c = 1;
	$('h2').each(function() {
		str += '<p><?' + 'php echo BfHtml::a(\'' + $(this).text() + '\',\'/kerdesek#' + (c++) + '\'); ?></p>\r\n';
	});
	*/
});
