/**pouf ata
 *
 * Copyright   Michael Futreal (http://michael.futreal.com/jquery/vjustify)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 * 
 */
	
jQuery.fn.vjustify=function() {
    var maxHeight=0;
	this.each(function(){
        $(this).css('height','auto');
    });
	this.each(function(){
        if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
    });
	//alert(maxHeight);
    this.each(function(){
        $(this).height(maxHeight + "px");
        if (this.offsetHeight>maxHeight) {
            $(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px");
        }
    });
};
