var w = '';
var img = '';
var img_ratio = '';

$(window).load(function() {
	w = $(window);
	img = $('#home-fullscreen-image');
	img_ratio = img.width() / img.height();
	
	home_resize();
	
	w.resize(function() {
		home_resize();
	});
});

function home_resize() {
	$('#home-fullscreen').height(w.height() - 132 + 'px');
	if ((w.width() / (w.height() - 132)) < img_ratio) {
		img.removeClass().addClass('bgHeight');
	} else {
		img.removeClass().addClass('bgWidth');
	}

}
