/*!
 * jQuery Photo Swap
 * http://bnj.com/
 *
 * Copyright (c) 2009 Stephen Kozik
 *
 * Date: 2009-12-06
 * Revision: 1
 */

currentphoto = 1;

function changephoto(ssnum) {
	var phototophare = "#sp"+currentphoto;
	$(phototophare).fadeOut(0);
	var phototophare = "#sp"+ssnum;
	$(phototophare).fadeIn(400);
	currentphoto = ssnum;
}