$(document).ready(function() {
	$(".album").each(function(index, element) {
		  $(this).smoothDivScroll({ 
			autoScroll: "onstart" , 
			autoScrollDirection: "backandforth", 
			autoScrollStep: 1, 
			autoScrollInterval: 15,	
			startAtElementId: "startAtMe", 
			visibleHotSpots: "always"
		});
		
		$(".album:eq("+index+") a").colorbox();
    });
	
	$("#foto .scrolltop").click(function(event) {
		event.preventDefault();
        $("#innerPhoto").stop().animate({scrollTop: $("#innerPhoto").scrollTop() - 200}, 500 );
    });
	
	$("#foto .scrollbottom").click(function(event) {
		event.preventDefault();
        $("#innerPhoto").stop().animate({scrollTop: $("#innerPhoto").scrollTop() + 200}, 500 );
    });
	
	$("#video .scrollleft").click(function(event) {
		event.preventDefault();
        $("#innerVideo").stop().animate({scrollLeft: $("#innerVideo").scrollLeft() - 550}, 500 );
    });
	
	$("#video .scrollright").click(function(event) {
		event.preventDefault();
        $("#innerVideo").stop().animate({scrollLeft: $("#innerVideo").scrollLeft() + 550}, 500 );
    });
});
