
$(document).ready(function(){
	$('.side-menu .wSubMenu').click(function(){
		$(this).parent('li').toggleClass('wSubMenuClosed');
	});
	$('.phAlbum .phPr').each(function(){
		var altText = $(this).attr("title");
		if (altText.length > 2){	
			$(this).after('<em class="titleHover" style="width:'+$(this).attr("width")+'px;"><span>'+altText+'</span></em>');
			$(this).next('em').hide();
		}
	});
	$('.phAlbum .phPr').hover(function(){
		$(this).next('em').show(200);
	}, function(){$(this).next('em').hide(100);});
	$('.folder-tree li > span').each (function(){ $(this).prepend('<em class="minus-plus">&nbsp;</em>'); });
	$('.folder-tree em.minus-plus').click (function(){
		if ($(this).parents('li').hasClass('last')) {$(this).parents('li').toggleClass('opened-last');} else {
		$(this).parents('li').toggleClass('opened');}
	});
});
