/*
________________________________________________________________________________________
*	home.js
*   
*	Javascript functions for Lennox Berkeley home page
*   
*	VERSION 1.00
*   
*	(c) 2010 Thomas Daly
________________________________________________________________________________________
*/


var current_album = 1;

function next_album()
{
	// alert('run');
	// Make current album invisible
	document.getElementById('album' + current_album).style.display = 'none';
	
	// Make next album visible
	var next_album = (current_album % 3) + 1;
	document.getElementById('album' + next_album).style.display = 'block';
	
	current_album = next_album;
}