// JavaScript Document

// Set the copyright year
now=new Date();
year=now.getFullYear();

// Scrolling buttons
var right = function () {
	var scroll = parseInt($('#photoScroll').css('left'));
	scroll -= 800;
	$('#photoScroll').animate({left:scroll + "px"});
}
var left = function () {
	if ($('#photoScroll').css('left') <= '0') {
		var scroll = parseInt($('#photoScroll').css('left'));
		scroll += 800;
		$('#photoScroll').animate({left:scroll + "px"});
	}
}
