$(document).ready(function()
{
    // zamenjaj tekst s slikami
    $("#nav a").each(function(){
        meniChange($(this).attr("class"));
    });

    $("#main img[src*='_thumbs/_']").each(function(){
        var src = $(this).attr("src").replace('_thumbs/_', '');
        $(this).wrap('<a href="'+src+'" class="slika"></a>');
    });

    // hover za meni
    $("#nav img").hover(
         function()
         {
             this.src = this.src.replace("_off","_on");
         },
         function()
         {
            this.src = this.src.replace("_on","_off");
         }
    );

    $(function() {
        $('#main .slika').lightBox();
    });

});

function meniChange(att)
{
    var what = $("#nav ."+att)
    what.html("");
    what.append('<img src="img/'+att+'_off.png">');
}



