	$(document).ready(function(){
		$('.third > li > a').click(function(){
			$(this).toggleClass('opened');
			$(this).parent().find('ul').slideToggle('fast');
			return false;
		});
		$('#add').hover(function(){
			$('#add ul').show();
		},
		function() {
			$('#add ul').hide();
		});
		
		$("#login_block .enter").click(function(){
			$("#auth,#overlay").show();
			return false;
		});
		$("#overlay").click(function(){
			$("#auth,#overlay").hide();
		});
		 $('a.delete_item').click(function(){
			  return deleteConfirm(this.href);
		  }); 
		 
		 
		 
	});	
	function deleteConfirm(url)
	 {
	 if(confirm('Вы действительно хотите удалить?'))
	 {
	 document.location = url;
	 }
	 return false;
	 } 
