$(document).ready(function() {
	$("#adminlogin").click(function() {
		if ($('#adminbox').is(":hidden")) {
			$('#adminbox').slideDown("slow");	
		}else{
			$('#adminbox').slideUp("slow");	
		}
	});
	$(".showboxdelete").click(function() {
		if ($(this).parent().children('.deletebox').is(":hidden")) {
			$(this).parent().children('.deletebox').slideDown("fast");
		}else {
        	$(this).parent().children('.deletebox').slideUp("fast");
      	}
	});
});
