// JavaScript Document
$(document).ready(function() {

	$('ul>li>a').click(function() { 
		$(this).parent().find('ul').toggle();
		$.post("meni_session.php", {meni:$(this).parent().find('ul').attr('id'),vrednost: $(this).parent().find('ul').css("display")}, function(data){
		//alert(data);
		//$("#container").html("<b>"+data+"</b>");
		});
					
	});
});
