 $(function(){
  $('.scroll-pane').jScrollPane();
    $('a#ajax-req').click(function(event){
      event.preventDefault();//stop action for real link loader
     jQuery.post($(this).attr('href'), 
     function(data){
       $('#gallery-ajax-load').replaceWith(data);
       $.getScript('/js/startpage.js');
       $.getScript('/js/next-video.js');
       /**
        * Create thubs of img by fly
        */
       $.getScript('/js/thumbs.js');
     });
    });
});

