(function(){
	var resizer = function() {
		var infobox = $(".astrolog:first .info-box .connect").width();
		var childs = $(".astrolog:first .info-box .connect > a");
		var childwidth = 0;
		$.each( childs, function(i,e){
			e = $(e);
			childwidth = (e.position())['left']+e.width();
		});
		childwidth += 14;
		var space = infobox - childwidth;
		var prices = $(".astrolog .info-box .price");
		$.each( prices, function(i, e){
			e = $(e);
			if(e.width() >= space) {
				e.addClass("price-left");
			} else {
				e.removeClass("price-left");
			}
		});
	};

	$(window).resize(resizer);
	$(window).ready(resizer);
})();

