$.fn.leftAlign=function(){
			
	var lefts = new Array();
	$(this).each(function(){
		var theItem = $(this);
		$(theItem).css('position','relative');
		var theOffset = $(theItem).offset();
		lefts.push(theOffset.left);
	});
	
	var biggestValue = 1;
	for (x=0;x<lefts.length;x++){
		if (lefts[x] > biggestValue){
			biggestValue = lefts[x];
		};
	};
	
	$(this).each(function(){
		var theMoving = $(this);
		var Offset = $(theMoving).offset();
		var calcOffset = biggestValue - Offset.left;
		$(theMoving).css({"left":calcOffset});
	});
		
};
