// JavaScript Document
$(function(){
	$.fn.align=function(settings){
			st=$.extend({
				compare: "",
				height: null
			},settings);
			st.tmp_height= ($(this).height() > $(st.compare).height()) ? $(this).height() : $(st.compare).height();
			st.tmp_height= (st.height==null) ? st.tmp_height : st.height;
			$(this).css("height",st.tmp_height+"px");
			$(st.compare).css("height",st.tmp_height+"px");
 		}
});