// JavaScript Document
// kwik.js

// get window width

function getWindowWidth() {
	var winW = 630;

	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
			winW = window.innerWidth-16;
		}
		if (navigator.appName.indexOf("Microsoft")!=-1) {
			winW = document.body.offsetWidth-20;
		}
	}	
	return winW;
}

function getMainWidth() {
	var winW = getWindowWidth();
	var rightSectionW = 457;
	
	var W = winW - rightSectionW - 50;
	
	return W;
}

function getImageWidth() {
	var imageCount = 6;
	
}