$(document).ready(function(){
$(".vertfix div div").vjustify();
$(".vertfix1 div div").vjustify();
$(".vertfix2 div div").vjustify();
$(".vertfix3 div div").vjustify();
$(".vertfixcol").vjustify();
$(".vertfixcol2").vjustify();
});
jQuery.fn.vjustify=function() {
    var maxHeight=0;
    this.each(function(){
        if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
    });
    this.each(function(){
        $(this).height(maxHeight + "px");
        if (this.offsetHeight>maxHeight) {
            $(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px");
        }
    });
};
