$(document).ready(function() {    
    
    $('.bilgicik').tooltip({ 
        bodyHandler: function() {
            return $($(this).attr('inf')).html(); 
        },
        track: true,
        showURL: false,
        delay: 0,
        top: 15, 
        left: 15         
    }).click(function() {
        return false;
    });
    
    $('#btnAra').bind('click', function() {
        var sword = $('#sword').val();
        if(sword) {
            location.href = '/ara#' + sword;
        } else {
            $('#sword').focus();
        }
        return false;
    });
    
    $('#sword').keydown(function(event) {
       if(event.keyCode===13) {
          var sword = $('#sword').val();
          if(sword) {
            location.href = '/ara#' + sword;  
          } else {
              $('#sword').focus();
          }        
          return false;
       }
       return true;
    });      
    
    $('#nana').addClass('rsnav');

}); 