(function(window, document, $, undefined) {

	$(document).ready(function() {
		fixGallery(".img-item");
		fixGallery(".mi-unit");	
	});

	function fixGallery(selector) {
		var y_old = 0;
		var y_new = 0;
		$(selector).each(function () {
			y_new = $(this).offset().top;
			if (y_old > 0 && y_old < y_new) {
				$(this).addClass("clear-left");
				y_new = $(this).offset().top;
			}
			y_old = y_new;
		});
	}	

})(window, window.document, jQuery)
