
$(document).ready(function(){    
	$('.pageButton a').click(function()	{
		$('.pageButton .on').removeClass('on')
		$(this).addClass('on')
		workingItem = parseInt($(this).html() - 1);
		$('#puffGcaption').text(picArray[workingItem].caption);
		$('#puffGimg').attr('src', picArray[workingItem].img);
	});
});


function GImage(img, caption)	{
	this.img = img;
	this.caption = caption;
}

function changeGallery(to)	{
	$('#puffGallery').removeClass('on');
}


