function resize() {
	var ww = $(window).width();
	var hh = $(window).height();

	var img_dim = document.getElementById('fullbg').title.split("|");
	var img_w = img_dim[0];
	var img_h = img_dim[1];
	var img_ratio = img_w / img_h;

	var outw = ww;
	var outh = hh;

	if (outw < 975) outw = 975;
	if (outh < 700) outh = 700;

	//document.getElementById('outtext').value = img_w + ' - ' + img_h + ' | ' + ww + ' - ' + hh + ' | ' + outw + ' - ' + outh + ' | ';

	var window_ratio = outw / outh;

	if (img_ratio > window_ratio) {
		document.getElementById('fullbg').style.width = (outh * img_ratio) + "px";//'auto';
		document.getElementById('fullbg').style.height = outh + "px";//'100%';
	} else {
		document.getElementById('fullbg').style.width = outw + "px";//'100%';
		document.getElementById('fullbg').style.height = (outw / img_ratio) + "px";//'auto';
	}
	//document.getElementById('outtext').value += document.getElementById('fullbg').style.width + ' - ' + document.getElementById('fullbg').style.height;
}
// ook basis javascript functies (denk aan confirm, etc)
//	- toggle 2 divs
//	- toggle 1 div on/off
//	- 

function MQConfirm(question, to) {
	if (confirm(question)) {
		window.location = to;
	}
}
