$(function() {

   $('#sleep .whole_content, #cook .whole_content, #makeup .whole_content, #small .whole_content').hide().before('<a href="#" title="Pročitaj ostatak" class="read_whole_content">Opširnije</a>');
   $('#sleep .whole_content, #cook .whole_content, #makeup .whole_content, #small .whole_content').after('<div class="up">&nbsp;</div>');

   $('.content').click(function(event){

        $tgt = $(event.target);

        if($tgt.is('.read_whole_content')){
        
            $tgt.next('.whole_content').toggle('fast');
           
            $tgt.next('.whole_content').next('.up').html('<a href="#" title="Sakrij" class="read_whole_content clicked">Sakrij</a>');

            $tgt.hide();
            event.preventDefault();
        }
        
        if($tgt.is('.clicked')){
        
            $tgt.parent().prev().toggle('fast');
            $tgt.hide();
            $tgt.parent().prev().prev().show();
            event.preventDefault();
        }
        
        
   });
   
$("a[rel*='lightbox']").lightbox();

});


