$(function(){

$('a[@rel*=lightbox]').lightBox({});

/*
$('#fotogalerija div p').hide();

$('#fotogalerija div').each(function()
{

    $(this).find('p').slice(0,4).show();
    
});

$('#fotogalerija h2').after('<a class="all" href="#" style="display: block; padding-bottom: 10px;">Vidi sve slike ove kategorije.</a>');


    var $hash = window.location.hash;
    if($hash && $hash == '#fotogalerija') {
        $('#fotogalerija span:first div').show(200);
        $('#fotogalerija span:first div').find('p').slice(4).toggle(200);
    }


$('#fotogalerija h2 a').click(function () {

    $(this).parent().parent().find('div').toggle(200);
    return false;  
    
});


$('.all').livequery('click',function () {
    
    $(this).parent().find('div').show(200);
    $(this).parent().find('p').slice(4).toggle(200);
    $(this).remove();
    return false;
    
});
*/

});