$(document).ready(function(){ 
		drops = new Array('#trash', '#restore', '#albums .album_cover', '#photos .thumbnail');
		photoCalls = new Array(gallery.dropTrash, gallery.dropRestore, gallery.dropImageToAlbum, gallery.swapId);
		photoHovers = new Array(null, null, null, 'droppable-insert');
		albumCalls = new Array(gallery.dropTrash, gallery.dropRestore, gallery.swapId, false);
		albumHovers = new Array(null, null, 'droppable-insert', null);
		//gallery.setDroppable("#trash", "", gallery.dropAlbumToTrash);
		// gallery.setDroppable("#trash", "#photos .thumbnail, #albums .unselected", gallery.dropTrash);
		// gallery.setDroppable("#restore", "#photos .thumbnail, #albums .unselected", gallery.dropRestore);
});
