jQuery(function($) {

		var path = location.pathname.substring(1).split('/').pop();
		$('#navi ul li a[href$="' + path + '"]:first').addClass('active current').parent().parent().parent().not('#navi').find('a:first').addClass('active current');

		$('#navi ul ul').hide().each(function () {
				$(this).parent().hover(function () {
						var fromLeft = $(this).position().left - 6;
						var fromTop  = $(this).position().top + 12;
						$(this).find('a:first').not('.current').addClass('active');
						$(this).find('ul').css({'left' : fromLeft, 'top' : fromTop}).fadeIn('fast');
				}, function () {
						$(this).find('a:first').not('.current').removeClass('active');
						$(this).find('ul').fadeOut('fast');
				});
		});

		$('#users-list li a').click(function () {
                data = 'huhu';
                $('#open-user').remove();
		        $(this).parent().append('<div id="open-user">' + data + '</div>');
		        return false;
		});

		$('#slideme').slideView();

});