jQuery(document).ready(function(){

    /* aliş veriş falan */
    $('form#fast_login').keydown(function(e) {
        if (e.keyCode == 13) {
            fast_login();
        }
    });

    jQuery(".tooltip").easyTooltip({
        xOffset: -60,
        yOffset: 60
    });
    
});

function _search(tag, from) {

    if(tag.length < 3) {
        alert('En az 3 karekter girilmelidir.');
        return false;
    }

    if(from == 'subscriber') {

        window.location.href = base_url + 'subscriber/search/' + tag;
    } else if(from == 'user') {

        window.location.href = base_url + 'backend/user/search/' + tag;
    }
}

function scroll_to(id){
    jQuery('html,body').animate({scrollTop: jQuery("#" + id).offset().top},'slow');
}


