$(document).ready(function(){         
					$("div.scrollable").scrollable({
						size: 4, // number of pictures per page
						next: '#next', // id of next control element
						prev: '#prev', // id of prev control element
						navi: '#navi' // id of navigation control holder
					});
					$("#albums img").bind("click", function(){
						$("#a_title").text($(this).attr('title'));
						$("#pic_holder").html('<img class="loading" src="_images/gallery/loading.gif" alt="Loading..." />').load("_scripts/gallery_ajax.php",{"aID":$(this).attr("name")},function(){
							$("#pic_holder").find("a").fancybox();
						});
					});
				}); 