//Portfolio Enhancements
// jQuery Scrollable Plugin call
$(document).ready(function() {
	$('div.scrollable').scrollable({
		size: 1
   });
	// Get number values assigned by Scrollable, increment them, and then write them in as the link text
	$('div.navi a').each(function(){
		var count = $(this).attr("href");
		newCount = parseInt(count);
		$(this).text(newCount+1);
	});
});



