﻿function showLoader() {
    $("#loader img").show();
}

function showSmallLoader() {
    $(".loader_small img").show();
}

$(document).ready(function () {
    $('.onhoverblue').mouseover(function () { $(this).addClass('onhoverblueactive') });
    $('.onhoverblue').mouseout(function () { $(this).removeClass('onhoverblueactive'); });
    $('.onhoveryellow').mouseover(function () { $(this).addClass('onhoveryellowactive') });
    $('.onhoveryellow').mouseout(function () { $(this).removeClass('onhoveryellowactive'); });

    $(".tooltip").tipsy();
});

function checkFillInput(input) {
    var textBox = document.getElementById(input);
    if (textBox) {
        if (textBox.value != '') {
            return true;
        }
        else {
            return false;
        }
    }
    else {
        return false;
    }
}
