$(document).ready(function(){
$('a:not(a[href^=http],a.bx-prev,a.bx-next,a#dvigat,a[data-slide-index])').on('click', function(event){
event.preventDefault();
var href = $(this).attr('href');
$.ajax({
type: "POST",
url: "ajax.php",
data: 'page='+href,
dataType: "json",
success: function(data) {
$('article.preview-news').hide().html(data.text).fadeIn(200);
$('title').html(data.title);
if(data.page == 'hostel'){
$(".two_bxslider").bxSlider({
speed: '300',
auto: true,
randomStart: true
});
setTimeout(function(){ //вот так вота работает
$('.foto_box_hidden').hide();},200);
$('a.photo_view_hostel').click(function(event){
event.preventDefault();
$('.foto_box_hidden').toggle();
});
}
}//success
})//ajax
})//.on
})//ready
Всем спасибо за внимание.