$(function(){
	$('.delete').click(function(){
		if ($(this).parent().parent().parent().hasClass('directory')) var name = 'directory';
		else var name = 'file';
		
		return confirm('Are you sure you want to delete this ' + name + '?');
	});
	
	$('.list-directory ul').css({ display: 'none' });
	$('.list-directory strong').css({ cursor: 'pointer' }).click(function(){
		var $this = $(this);
		
		$this.siblings('ul').slideToggle();
	});
	
	$('#dir').change(function(){
		window.location = 'index.php?dir=' + $(this).val();
	});
});