// JavaScript Document
/// lightBox
$(function() {
$('.items a').lightBox(); // Select all links with lightbox class
$('div#right_catalogue_photo a').lightBox();
});
// initialize scrollable  
$(function() {         
$("div.scrollable").scrollable({horisontal:true, size: 1}); 
$("div.scrollable1").scrollable({horisontal:true, size: 1});    

$('.arrow_next_disabled').click(function(){return false;});
$('.arrow_prev_disabled').click(function(){return false;});

$(".btn-slide").click(function(){
$(".btn-slide")
.animate({opacity: "0"})
.animate({opacity: "1"}, 1200);
$(this).toggleClass("act");
$("#textbox").slideToggle("slow");
   });
 });



