Problem with dinamic contect + url

Problem with dinamic contect + url

After adding function swipe, website stopped update dinamic content + url.

This is code need update content:

var default_content="";
 
$(document).ready(function(){
    
    checkURL();
    $('ul li a').click(function (e){
 
            checkURL(this.hash);
 
    });
    
    default_content = $('#pageContent').html();
    
    
    setInterval("checkURL()",250);
    
});
 
var lasturl="";
 
function checkURL(hash)
{
    if(!hash) hash=window.location.hash;
    
    if(hash != lasturl)
    {
        lasturl=hash;
        
    
        if(hash=="")
        $('#pageContent').html(default_content);
        
        else
        loadPage(hash);
    }
}
 
 
function loadPage(url)
{
    url=url.replace('#page','');
    
    $('#loading').css('display','inline');
    
    $.ajax({
        type: "POST",
        url: "js/load_page.php",
        data: 'page='+url,
        dataType: "html",
        success: function(msg){
            
            if(parseInt(msg)!=0)
            {
                $('#pageContent').html(msg);
                $('#loading').css('display','none');
            }
        }
        
    });
 
}

And this code need enable function:

$(function() {
     var pgurl = window.location.href.substr(window.location.href
.lastIndexOf("/")+1);
     $(".menu ul li a").each(function(){
          if($(this).attr("href") == pgurl || $(this).attr("href") == '' )
          $(this).addClass("active");
     })
});


My WEBSITE http://cm90769.tmweb.ru