equal height
function eqH(selector){
var _h,h=0;
$(selector).each(function(){
$(this).height('auto');
_h = $(this).height();
if(_h > h) h = _h;
$(selector).height(h);
});
}
$(window).on('resize',function(){
eqH('.selector');
}).triggerHandler('resize');