
/* - setContentLeadHeight.js - */
jq(document).ready(function(){
  jq('.cwxleadImage').each( function(){
// hsc, 19:34, 20111223
//    var newHeight = jq(this).height(); 
    var newHeight = jq(this).attr('height')
    if (newHeight > 16  ) {
      jq(this).attr('style', 'height:'+newHeight+'px');
    }
  });
});



