function initWidth () {
	initLightbox();
	setWidth();
	addEvent(window,'resize',setWidth,false);
}

function setWidth () {
	var arrayPageSize = getPageSize();
	if (arrayPageSize[0] <= 900) {
		setStyle('small');
		createCookie('style','small',365);
	} else {
		setStyle('');
		createCookie('style','',365);
	}
}

// addEvent by Scott Andrew http://www.scottandrew.com

function addEvent ( elm, evType, fn, useCapture ) {
	if (elm.addEventListener) {
		elm.addEventListener(evType, fn, useCapture);
		return true;
	} else if (elm.attachEvent) {
		var r = elm.attachEvent('on' + evType, fn);
		return r;
	} else elm['on' + evType] = fn;
}

// StyleSwitcher functions written by Paul Sowden //
// http://www.idontsmoke.co.uk/ss/                //
// http://www.alistapart.com/stories/alternate/   //

function setStyle (title) {
	var i, a, main;
	for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
		if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
			a.disabled = true;
			if(a.getAttribute("title") == title) a.disabled = false;
		}
	}
	return false;
}

function getStyle () {
	var i, a;
	for (i=0; (a = document.getElementsByTagName("link")[i]); i++) {
		if (a.getAttribute("rel").indexOf("style") != -1 
			&& a.getAttribute("title") 
			&& !a.disabled
			) return a.getAttribute("title");
	}
	return null;
}

function getPreferredStyle () {
	var i, a;
	for (i=0; (a = document.getElementsByTagName("link")[i]); i++) {
		if (a.getAttribute("rel").indexOf("style") != -1
			&& a.getAttribute("rel").indexOf("alt") == -1
			&& a.getAttribute("title")
			) return a.getAttribute("title");
	}
	return null;
}

function createCookie (name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	} else expires = "";
	document.cookie = name+"="+value+expires+"; path=/; domain=.mikepiontek.com";
}

function readCookie (name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

var cookie = readCookie("style");
var title = cookie ? cookie : getPreferredStyle();
setStyle(title);