window.onresize = shutDownTrashCompactors;
//STOP IE FROM DECREASING WINDOW WIDTH LESS THAN 800px

function shutDownTrashCompactors() {
	if (navigator.appVersion.indexOf('MSIE') > -1) {
		if(document.body.clientWidth < 800) {
			document.getElementById('bodyBox').style.width = '800px';
		}
		if(document.body.clientWidth > 800) {
			document.getElementById('bodyBox').style.width = 'auto';
		}
	}
}

function elRollo(pic) {
document.getElementById('headNav').className = pic;
}

function elRolloff() {
document.getElementById('headNav').className = 'default';
}

pic1= new Image(); 
pic1.src="../images/top2_web.gif";
pic2= new Image(); 
pic2.src="../images/top2_graphic.gif";
pic3= new Image(); 
pic3.src="../images/top2_illustration.jpg";
pic4= new Image(); 
pic4.src="../images/top2_resume.gif";
pic5= new Image(); 
pic5.src="../images/top2.gif";
function cookies(nameVal) {
document.cookie = name+"="+nameVal+"; path=/; domain=kalahiki.com";
}

function cookies(nameVal) {
document.cookie = "kalahiki="+nameVal+"; path=/; domain=kalahiki.com";
}

function cookiecheck() {
alert(document.cookie);
}

var IEchecky = document.all;

function createXHR() {
	var elObjecto;
	if(IEchecky){
	elObjecto = new ActiveXObject("Microsoft.XMLHTTP");
	}else{
	elObjecto = new XMLHttpRequest();
	}
	return elObjecto;
}

var xhr = createXHR();

