﻿$(function() {

// don't init gallery if it consists of a single photo
if($("div.image").length > 1) {
// wrap images
$("p#project-count").replaceWith('<p id="gallery-count" class="col one"><em></em> <span>1of1</span></p>');
$('<div id="gallery-navigation" class="col three"><p><a href="#" id="previous-image">Previous</a>/<a href="#" id="next-image">Next</a></p></div>').insertAfter("p#gallery-count");
$("div.image").wrapAll("<div id='image-wrapper'><div id='image-holder'></div></div>");

// init gallery: Gallery.init(imageHolder, imageWrapperWidth, imageCountHolder, prevButton, nextButton)
Gallery.init($("div#image-holder"), 560, $("p#gallery-count").children("span")[0], $("a#previous-image"), $("a#next-image"));

$("div.image").show();
}
});
