$(document).ready(function(){
    $('.adverts tr').hover(
        function () {
            $(this).addClass('grey');
        }, 
        function () {
            $(this).removeClass('grey');
        }
    );
    $('.delete').click(function(){
        return confirmSubmit('Ar tikrai norite ištrinti?');
    });
    $('#js-form select').change(function(){
        $('#js-form').submit();
    });
});
function changeclass(item, newClass)
{
    item.setAttribute('class', newClass);
    item.setAttribute('className', newClass);
}
function confirmSubmit(msg)
{
    var agree=confirm(msg);
    if (agree) return true;
    else return false;
}
function newLocation(address)
{
    window.location = address;
}

