$(document).ready(function(){
	$('ul.level_1 > li > a').click(function(e){
		e.preventDefault();
		if( $(this).next('ul:hidden').html() ){
			$(this).next('ul').slideDown();	
		} else {
			$(this).next('ul').slideUp();
		}
	});
	
	if (typeof php_p_selected != 'undefined') {
		$('#l_' + php_p_selected).addClass('podkategoria_highlight')
								 .parent().parent().show();
	}
	
});