function resize(thisImg)
{
    if($(thisImg).width() > $(thisImg).height()) { 
     $(thisImg).css('width',200+'px');
     $(thisImg).css('height','auto');
    } else {
     $(thisImg).css('height',150+'px');
     $(thisImg).css('width','auto');
    }
}

function resizeReferentie(thisImg)
{
    if($(thisImg).width() > $(thisImg).height()) { 
     $(thisImg).css('width',150+'px');
     $(thisImg).css('height','auto');
    } else {
     $(thisImg).css('height',75+'px');
     $(thisImg).css('width','auto');
    }
}
