$(document).ready(function(){


    //top shops and news & events
    $('#features').hide();
    $('#slider_menu a.whativid').click(function(){
        $('#whativid').slideToggle();
        $('#features').slideToggle();
        $('#slider_menu').css('backgroundPosition', 'top');
        return false;
    });
    $('#slider_menu a.features').click(function(){
        $('#whativid').slideToggle();
        $('#features').slideToggle();
        $('#slider_menu').css('backgroundPosition', 'bottom');
        return false;
    });
    $("#searchTxtBox").autocomplete({
                source: "/shops/suggestion/",
                minLength: 2
        });
})