$(document).ready( function (){

	$( "#before" ).resizable({
		handles: "e",
		maxWidth: 860,
		minWidth: 27
	});

	var currentGalleryItem = 0;
	var gallery = $('.gallery-block');
	var totalImages = gallery.find('img').size();

	// Gallery - Right Arrow Click
	$('.portfolio-featured a.right-arrow').click(function(){
	
		var currentLocation = gallery.position();
		var currentLocation = currentLocation.left;
		
		if ((currentGalleryItem + 1) == totalImages) { nextImage = 0; } else { nextImage = currentGalleryItem + 1; }
		nextImageLocation = (nextImage * 486) * -1;
		gallery.stop().animate({'left':nextImageLocation},500,'easeInOutExpo');
		currentGalleryItem = nextImage;
	
	});
	
	// Gallery - Left Arrow Click
	$('.portfolio-featured a.left-arrow').click(function(){
	
		var currentLocation = gallery.position();
		var currentLocation = currentLocation.left;
		
		if (currentGalleryItem == 0) { nextImage = totalImages - 1; } else { nextImage = currentGalleryItem - 1; }
		nextImageLocation = (nextImage * 486) * -1;
		gallery.stop().animate({'left':nextImageLocation},500,'easeInOutExpo');
		currentGalleryItem = nextImage;
	
	});
	
	$('.portfolio-page .entry h2').each(function(){
		$(this).append('<a href="#top" class="button backtotop grey">Back to Top</a>');
	});
	
});
