$(function() {

	adjustScroll();

	$(window).resize(function() {
		adjustScroll();
	});

	$('.gallery-icon').find(' a').attr('rel', 'prettyPhoto[gallery]');
	
	$('a[rel^="prettyPhoto"]').prettyPhoto({
		show_title : false,
		show_description : false,
		social_tools : ''
	});

});

function adjustScroll() {
	var windowSize = $(window).width();
	var contentWidth = $('.centercolumn').width();

	if (windowSize < contentWidth) {
		$('body').css('overflow-x', 'auto');
	} else {
		$('body').css('overflow-x', 'hidden');
	}
}

