jQuery(document).ready(function() {
    $("span.navrh").click(function(){$("html, body").animate({scrollTop:0}, "slow");});
    $("form input[name=q]").focus(function () {
        if ($(this).val() == "Pretraga...") $(this).val("");
    });
    $("form input[name=q]").blur(function () {
        if ($(this).val() == "") $(this).val("Pretraga...");
    });
});

