﻿jQuery(document).ready(function(){
    jQuery('a.lightbox').lightBox(
        {
            "txtImage": "Изображение" , 
			"txtOf": "из"
        }
    );
    if (jQuery('div.content_edit').appendTo('div.cnt'))
    {
	jQuery('div.content_edit').appendTo('div.col3')
    };

    jQuery('a.group_title').toggle(	    
	    function()
	    {
		 var id = jQuery(this).attr('id');
		jQuery('tr#group_'+ id).show('normal');
		jQuery('a#'+ id + ' img ').attr('src','/img/arrow_opened.jpg');
	    },
	    function()
	    {
		 var id = jQuery(this).attr('id');
		jQuery('tr#group_'+ id).hide('normal');
		jQuery('a#'+ id + ' img ').attr('src','/img/arrow_closed.jpg');

	    }
    );
}
);
