$(document).ready(function(){
	$("#message_box").click(function(){
		$("#message_box").fadeOut("slow");
	});
	$("li.ml1 ul").hide();
	$("li.ml1 a.active").next("ul").show();
	$("li.ml1 a.l1").click(function(event){
		event.preventDefault();
		$("li.ml1 ul").hide();
		$(this).next("ul").show();
		$("li.ml1 a").removeClass("active");
		$(this).addClass("active");
		$(this).addClass("l1");
	});
	$("#text_search").click(function(){
		if($(this).attr("value") == "hledat")
		{
			$(this).attr("value","");
		}
	});
	$(".askDel").click(function(event)
			{
				if(!confirm("Opravdu si přejete smazat inzerát?"))
				{
					event.preventDefault();
				}
			});
});
