$(document).ready(function () {   //jquery
FB.init({
                appId  : '277638168928490',
                status : true, // check login status
                cookie : true, // enable cookies to allow the server to access the session
                xfbml  : true // parse XFBML
            });
    //-----------------rychlý výběr hry---------------------
    var api = $('#search_box').jScrollPane().data('jsp');

    $("#search").focusin(function () {
        if ($("#search").val()=="Rychlý výběr hry") $("#search").val("");
        $("#search_box").fadeIn();
        query=$("#search").val();
        api.getContentPane().load("/ajax/search_game.php?q="+query,    function() {
            api.reinitialise();
        });
    });

    $("#search").focusout(function () {
        $("#search_box").fadeOut();
    });

    $("#search").keyup(function () {
        query=$("#search").val();
        $("#scroll").load("/ajax/search_game.php?q="+query);
    });

    $("#search").keyup(function () {
        query=$("#search").val();
        api.getContentPane().load("/ajax/search_game.php?q="+query,    function() {
            api.reinitialise();
        });
    });
    //--------------------------------------------------------

    //-----------------------facebook-------------------------

});
