﻿$(document).ready(function() {


	//$("#horizontal").scrollable({loop:true});
	
	$("div.scrollable").scrollable();



	$("a").focus(function() {
		$(this).blur();
	});


	$(".lightbox").lightBox();




	//$('.scroll-pane').jScrollPane({showArrows: false, scrollbarWidth: 21, scrollbarMargin:20, arrowSize: 12});
	




	// img src replace
/*
	$('#horizontal img').click(function() {


		// get new img src
		var $this = $(this);
		var $new_src = $this.attr("src").split("_thumb").join("");


		// replace big image
		var $active = $(".active");
		
		$active.attr({ 
          src: $new_src
        });


	});
	*/
	
	
	/*
$('.items img').click(function() {

		$('#play-container').removeClass('invisible');
		clearInterval(playSlideshow);

		// get new img src
		var $this = $(this);
		var $new_src = $this.attr("src").split("_thumb").join("");

		// replace big image
		var $big = $("div.active img");				
		
		$big.attr({ 
			src: $new_src
        });

	})*/

});



