// Function for displaying scrolling gallery
/*(function($) {
	$.fn.JGallery = function() {
		var ul = $(this).children();
		var li = ul.children();

		var width = 0;
		li.each(function(i){
			this.style.left = (i * 225) + 'px';
			width
		});
	};
})(jQuery);*/
