$(document).ready(function(){
	// execute your scripts when the DOM is ready. this is mostly a good habit
	$(function() {

		// initialize scrollable
		$(".scrollable").scrollable();

	});
		
	$('#more_bio').click(function(){
	   $('#bio_hidden').slideToggle();
	   return false;
	});
	
    $('#photos .items a').lightBox(); // Select all links that contains lightbox in the attribute rel

	
});
