hs.graphicsDir = '/js/highslide/graphics/';
hs.wrapperClassName = 'wide-border';
    
$(function(){

    $("td.main_content_td a > img").each(function(index) {
        var parent = $(this).parent();
        if(parent.get(0).tagName == "A")
        {
            parent.attr("class", "highslide").attr("onclick", "return hs.expand(this)");
        }
    });
    
    $("input[class^=search_input]").focus(function(){
        if($(this).attr("value") == 'Поиск...')
        {
            $(this).attr("value", "");    
        }
    });
});

function showAddMessForm()
{
    $("#addMesForm").show();
}

function showQuestion(id)
{
    if($("#question_" + id).is(":visible"))
    {
        $("#question_" + id).hide();
    }    
    else
    {
        $("#question_" + id).show();
    }
}

function reloadImage()
{
    var link = "/captcha/captcha.php?sid=" + Math.random();
    $('#siimage').attr('src', link);
}
