// JavaScript Document

function resizeImg() {	
	if(parseInt($('#homeImg').width()) > parseInt($('#homeImg').height())) {
		$('#homeImg').css("width", $(window).width());
		$('#homeImg').css("height", 'auto');
	}
	else {
		$('#homeImg').css("width", 'auto');
		$('#homeImg').css("height", $(window).height()-90);
	}	
}


$(document).ready(function(){
	resizeImg();
	$(window).resize(function(){
		resizeImg();
	});
});
