$(document).ready( function()
{
	$( 'div.AlbumImage:first', document.getElementById('Primary') ).show();

	$( 'a.GoToFirst:first, a.GoToPrevious:first, a.GoToNext:last, a.GoToLast:last', document.getElementById('Primary') ).hide();

	$( 'a.GoToFirst', document.getElementById('Primary') ).click( function()
	{
		$( 'div.AlbumImage', document.getElementById('Primary') ).hide();
		$( 'div.AlbumImage:first', document.getElementById('Primary') ).show();
	} );

	$( 'a.GoToPrevious', document.getElementById('Primary') ).click( function()
	{
		$( 'div.AlbumImage', document.getElementById('Primary') ).hide();
		var prevAlbumImage = $(this).parents('div.AlbumImage').prev('div.AlbumImage').show();
	} );

	$( 'a.GoToNext', document.getElementById('Primary') ).click( function()
	{
		$( 'div.AlbumImage', document.getElementById('Primary') ).hide();
		var nextAlbumImage = $(this).parents('div.AlbumImage').next('div.AlbumImage').show();
	} );

	$( 'a.GoToLast', document.getElementById('Primary') ).click( function()
	{
		$( 'div.AlbumImage', document.getElementById('Primary') ).hide();
		$( 'div.AlbumImage:last', document.getElementById('Primary') ).show();
	} );
} );