$(document).ready(function(){

	$('#comments-list .form').each(function(){
        var $this = $(this),
            $btn = $('.heading', $this),
            $box = $('.box', $this);
        $btn.click(function(){
            if ( $this.hasClass('open') ){
                $box.slideUp('fast', function(){
                    $('#comments-list .in').css('position', 'relative');
                });
                $this.removeClass('open');
            }
            else{   
                $box.slideDown('fast', function(){
                    $('#comments-list .in').css('position', 'relative');
                });
                $this.addClass('open');   
            }
            return false;
        });
    });
	
	
	$('a.lightbox').lightBox({
		txtImage : 'Obrázek',
		txtOf	: 'z',
		overlayBgColor : '#000',
		imageLoading:			'/public/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
		imageBtnPrev:			'/public/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
		imageBtnNext:			'/public/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
		imageBtnClose:			'/public/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank:				'/public/images/lightbox-blank.gif'
	});
    
    $('#side-menu a.last').corner('20px left');
    
    $('#content table').wrap('<div class="table-wrap"></div>').after('<span class="cor cor-l"></span><span class="cor cor-r"></span><span class="cor cor-bl"></span><span class="cor cor-br"></span>')
    
    /*$('#side-menu .expand').each(function(){
        if( $('.expand', this).size()==0 ){
            $(this).addClass('lastActive');
        }
    })*/
    
    $('#att-images a, #att-video a').hover(
		function(){
			$('.plus', this).show();
		},
		function(){
			$('.plus', this).hide();
		}
	)

});

