$(window).load(function() {
    $('#content').masonry({ columnWidth: '100' });
}).resize(function() {
	$('#content').masonry({ columnWidth: '100' });
});

$(function() {
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
