function resizeImage() {
var otn = $('.resImg').width() / $('.resImg').height();
if ($('.resImg').width() >= $(window).width()) {
$(".resImg").css({
width: $(window).height() * otn + 'px'
});
} else {
$(".resImg").css({
width: $(window).width() + 'px'
});
}
}
resizeImage();
$(window).resize(resizeImage);
function resizeImage() {
var wWindow = $(window).width();
var hWindow = $(window).height();
if ($('.resImg').width >= wWindow) {
$(".resImg").width(hWindow * 1.5);
} else {
$(".resImg").width(wWindow);
}
}
resizeImage();
$(window).resize(resizeImage);