function skinSelect (color) {

	// write user selection to cookie
	Cookie.set('skinColor',color,{duration: 365});
	skinCookieVar = Cookie.get('skinColor');
	
	// if useragent = IE6 reload page
	// for all other browsers: dynamically switch stylesheet
	if (navigator.appVersion.indexOf('MSIE 6.0') != -1) {
		document.location.reload()
	}
	else {
		document.getElementById('skinCSS').href = '/css/' + color + '.css';
	}
	
}