$(function() { 
    $("#thumbnails").scrollable({

    size: 1,
    clickable: false,
	items: ".scroller_wrap",
	item: ".thumb_slide",
	keyboard: false,
	loop: false,
	next: ".thumbNext",
	prev: ".thumbPrev",
	nextPage: ".nextPage",
	prevPage: ".prevPage",
	speed: 500,
	disabledClass: "visible"
	
	});
}); 

$(function() { 
	$("#gallery_main").scrollable({
	
	size: 1,
    clickable: true,
	items: ".scroller_wrap",
	nextPage: ".nextMain",
	prevPage: ".prevMain",
	item: ".main_slide",
	speed: 1500
	
	}).circular().navigator(".tn");
});

$(document).ready(function() {
  $('#information').hide();  
  $('a#reveal_copy').click(function() {
	$('#information').slideToggle(500);
		return false;
  });
});
