
$(document).ready(function () {
    /* $('.ui-state-active').removeClass('ui-state-active'); */
    $('#we-are-tabs-nav li a').mouseenter(function () {
        $('#we-are-tabs-content').show();
    });
    $('#we-are-tabs').mouseleave(function () {
        $('#tabs').tabs('selected', -1);
        $('.ui-tabs-selected').removeClass('ui-state-active').removeClass('ui-tabs-selected');
        $('#we-are-tabs-content').hide();
    });
    $('.try-now-button').mouseenter(function () {
        $(this).next('.try-now-form').show();
    });
    $('body').click(function (event) {
        if (!$(event.target).closest('.try-now').length) {
            $('.try-now-form').hide();
        }
    });
//    $('.try-now').mouseleave(function () {
//        $(this).children('.try-now-form').hide();
//    });
    $('#home-product-news').find('article').click(function () {
        location.href = $(this).attr("data-url");
    });
    $('#we-are-tabs-nav').find('a').click(function () {
        location.href = $(this).attr("data-url");
    });
    $('#we-are-tabs-content').find('.ui-tabs-panel').click(function () {
        location.href = $(this).attr("data-url");
    });
});

