$(document).ready(function() {
  
  $("#slideBar li").click(function(){
    if ( $("#imgWrapper img").is(":animated") || $(this).is(".on")  ) { return false; }
    $("#slideBar li").removeClass("on");
    $(this).addClass("on");
    $("#slideBar span").text( $(this).children("img").attr("alt") );
    var imgNo = $(this).prevAll().length;
    $("#imgWrapper img.on").fadeOut("slow", function () { $(this).removeClass("on"); });    
    $("#imgWrapper img:eq("+imgNo+")").fadeIn("slow", function () { $(this).addClass("on"); });
  });
  
  $("#header .txt").focus(function () {
    if ( $(this).attr("value") == "TRAŽILICA" ) { $(this).attr("value",""); }
  });
  $("#header .txt").blur(function () {
    if ( $(this).attr("value") == "" ) { $(this).attr("value","TRAŽILICA"); }
  });
});
