$(function(){
	resize_albums();
	
	$(window).resize(function(){
		resize_albums();
	});
	
	$('.lazy').lazyload();
});

function resize_albums(){
	var cover_width = $('.album-cover').outerWidth(true) + 5; 
	
	$('.albums').width(cover_width * Math.floor(document.documentElement.clientWidth/cover_width));
}
