$().ready(function(){
    $('#ma_tabcontent_1').show();
    $('.ma_tab').click(function(){
        $('.ma_tabcontent').hide();
        clickedId = $(this).attr("id");
        preOpen = clickedId.split("ma_tab_");
        openId = preOpen[1];
        
        $('#ma_tabcontent_'+openId).show();
        
        if(openId == 1){
            $('#menus_ajanlo_main_cont').css("background-position","0px -844px");
        }else{
            $('#menus_ajanlo_main_cont').css("background-position","-310px -844px");
        }
        
    });
});
