$(document).ready(function(){

	$('a#Zoom').fancybox();
	$('a.zoom').fancybox();
	
	/*
		the gallery
	*/
	var gallery = $('#GalleryNew li');
	var currently_showing = gallery.length - 1; //set to the last item, allows it to play nice with jqzoom

	gallery.eq(currently_showing).show();

	$('#Back').click( function() {

		gallery.stop(false, true);

		var show_next = currently_showing + 1;

		if( show_next == gallery.length )
			show_next = 0;

		gallery.eq(currently_showing).fadeOut();
		gallery.eq(show_next).fadeIn();

		currently_showing = show_next;
		
		return false;
	});


	$('#Next').click( function() {
		
		gallery.stop(false, true);
		
		var show_next = currently_showing - 1;

		if( show_next == -1 )
			show_next = gallery.length -1;

		gallery.eq(currently_showing).fadeOut();
		gallery.eq(show_next).fadeIn();

		currently_showing = show_next;
		
		return false;
	});



});

