$(function() {
	
	var ie6 = document.all && (navigator.userAgent.toLowerCase().indexOf("msie 6.") != -1);
	var ie7 = document.all && (navigator.userAgent.toLowerCase().indexOf("msie 7.") != -1);
	
	if ( ie6 ) {
		$('#menu > ul > li').mouseenter(function() {
			$(this).addClass('hover');
		}).mouseleave(function() {
			$(this).removeClass('hover');
		});
		if ($("#Content").height()<380) {
			$("#Content").height(380);	
		}
	}
	
	$('#FooterInner dd a').each(function() {
		$(this)
			.attr('href', $(this).attr('href').replace(/\ \_\_\[kukac\]\_\_\ /, '@').replace(/\ \[\_\_pont\_\_\]\ /, '.') )
			.html( $(this).attr('href').replace(/mailto:/, '') );
	});
	
	if ( $('#emailsubs').length ) {
		$('#cikktxtbody a').each(function() {
			
			while ( $(this).attr('href').indexOf( ' [__pont__] ' ) != -1 ) {
				$(this).attr('href', $(this).attr('href').replace(/\ \[\_\_pont\_\_\]\ /, '.') );
			}
			
			$(this)
				.attr('href', $(this).attr('href').replace(/\ \_\_\[kukac\]\_\_\ /, '@'))
				.html( $(this).attr('href').replace(/mailto:/, '') );
				
		});
	}
	
});