$(document).ready(function () {
	var hash = document.location.hash;

	if (hash && (hash !== '#')) {
		document.location = '#';
	}

	var $masonry = $('.masonry').masonry({
		itemSelector: 'article',
		columnWidth: 350,
		gutterWidth: 20,
		isAnimated: true,
		isFitWidth: true
	});

	$masonry.find('a.fancybox').fancybox();

	$masonry.imagesLoaded(function () {
		$masonry.masonry('reload');

		if (hash && (hash !== '#')) {
			document.location = hash;
		}
	});

	$masonry.find('.video-div').remove();
	$masonry.find('.extra-btn').remove();
	$masonry.find('video').prop('controls', true);

});