//авто обновление блока
jQuery(document).ready(function(){
setInterval("jQuery('#timeA').load('# span#timeB');",2000); // 1сек
});
jQuery(document).ready(function(){
setInterval("jQuery('#time1').load('# span#time1');",2000); // 1сек
});
/*jQuery(document).ready(function(){
setInterval("jQuery('#noti1').load('# span#noti1');",2000); // 1сек
}); */
//ajax
var Page = {
Loading: function(f){
if(f == 'start'){
$('html').css('overflow-y','auto');
$('#loading').fadeIn(300);
$('#window').html('').hide();
}
if(f == 'stop'){
$('#loading').fadeOut(300);
}
},
Go: function(h){
history.pushState({link:h}, null, h);
Page.Loading('start');
$('.content').load(h, {ajax: 'yes'}, function(data){
$('html, body').scrollTop(0);
Page.Loading('stop');
});
},
Prev: function(h){
Page.Loading('start');
$('.content').load(h, {ajax: 'yes'}, function(data){
Page.Loading('stop');
});
}
}