$(document).ready(function() {
	$('#navigation li').fade();
});

// funkcia pre pomaly fade na menu
$.fn.fade = function() {
	// nasrat pre IE6 a nizsi
	if ($(this).attr('class') != 'selected')
	{
		if ($.browser.msie && $.browser.version < 7) return;
		return $(this)
			.removeClass('highlight')
			.find('a')
			.append('<span class="hover" />').each(function () {
				var $span = $('> span.hover', this).css('opacity', 0);
				$(this).hover(function () {
					$span.stop().fadeTo(500, 1);
				}, function () {
					$span.stop().fadeTo(500, 0);
				});
			});
	}
}

