jQuery(document).ready(function(){
	var axImgWidth = 0;
	var axImgHeight = 0;

	axImgWidth = jQuery(".axAlbum:first-child a:first-child").width();

	if (axImgWidth > 0)
		jQuery(".axAlbum").css("width", axImgWidth + "px");

	jQuery(".axAlbum").each(function(){
		if (jQuery(this).height() > axImgHeight)
			axImgHeight = jQuery(this).height();
	});

	if (axImgHeight > 0)
		jQuery(".axAlbum").css("height", axImgHeight + "px");

//	jQuery(":asp('btnDeletePhoto')").click(
	jQuery('[id$="btnDeletePhoto"]').click(
		function() {
			return (confirm("Are you sure you want to delete this Album?\n\nAll Photos, Comments and Sub-Albums will also be deleted.\n\nAre you sure?"));
		}
	);

	jQuery(".axEditPanel textarea").textlimit('div.counter', 75);
});
