$(function() {

    $(".newsList .aNew").bind("click", function() {
        document.location.href = $("a:first", this).attr("href");
    });

    document.title += $("h1").text();

    if (jQuery.browser.msie) {
        $("#q").css("marginBottom", "-1");
    }

    $("#q").focus(inpFocusTextHide);

    if(typeof jsalert != "undefined" && jsalert.length>0){
        alert(jsalert);
    }
});

function inpFocusTextHide() {
    if (typeof $(this)[0].baseVal == "undefined" || $(this)[0].baseVal == null) {
        $(this)[0].baseVal = $(this).val();
        $(this).val("");
        $(this).bind("blur", inpBlurTextHide);
    } else {
        if ($(this)[0].baseVal && $(this).val())
            $(this).val("");
    }
}