$(function(){
	$('body').removeClass('js-disabled').addClass('js-enabled');
	
	$.localScroll();
	$(".colorbox").imgZoomSingle();
});

$.fn.imgZoomSingle = function(){
	return this.each(function(){
		$(this).colorbox({
			opacity: 0.8
		});
	});
}
