/*window.addEvent('domready', function(){
 $('all_doc').addEvent('click', function(e){
 e.stop();
 toggleCategoryInfo('text',this);
 });
 });
 function toggleCategoryInfo(id, link){
 // link = $(link);
 var obj = $(id);
 
 var slideObj = new Fx.Slide('gallery');
 if (obj.getStyle('display') == 'none') {
 obj.setStyle('display', 'block');
 }
 link.toggleClass('inactive');
 slideObj.toggle();
 
 }*/
var open = {
    'doc': false,
    'foto': false
}
$(document).ready(function(){
    $("#link_doc").click(function(){
        toggle('doc');
    });
    $("#link_foto").click(function(){
        toggle('foto');
    });
	$('#gallery .foto a').lightBox();
	$('#toggle_foto .foto a').lightBox();
    
});
function toggle(type){
    if (open[type] == false) {
        $('#toggle_' + type + '').show("slide", {
            direction: "up"
        }, 1000);
		$('#link_'+type+'').css({'backgroundImage':'url(\'img/but2.png\')'});
        open[type] = true;
    }
    else {
        $('#toggle_' + type + '').hide("slide", {
            direction: "up"
        }, 1000);
        open[type] = false;
		$('#link_'+type+'').css({'backgroundImage':'url(\'img/but1.png\')'});
    }
}



