

initScrollWidth();

function initScrollWidth() {
	var width = 0;
	$('.photogallery.selectedgallery').children('div').each(function () {
		width += $(this).outerWidth();
		
	});
	$('.photogallery.selectedgallery').css('width', width);
	
	
	

	var aboutwidth = 0;
	$('#aboutusgallery').children('div').each(function () {
		aboutwidth += $(this).outerWidth();
		
	});
	aboutwidth +=100;
	$('#aboutusgallery').css('width', aboutwidth);

	
}

