function buildStyleSwitcher(){
	var styleSwitcher = $('style_switcher');
	var smallTextBtn = $('smallTextBtn');
	var mediumTextBtn = $('mediumTextBtn');
	var largeTextBtn = $('largeTextBtn');
	if($('refresh_bg')) {var refresh_bg = $('refresh_bg');}
	
	smallTextBtn.onclick = function(){
		smallTextBtn.className = mediumTextBtn.className = largeTextBtn.className = '';
		document.getElementsByTagName('body')[0].className='smallText';
		this.blur();
		this.className = 'active';
		createCookie('BodyClass','smallText',365);
		return false;
		
	}
	mediumTextBtn.onclick = function(){
		smallTextBtn.className = mediumTextBtn.className = largeTextBtn.className = '';
		document.getElementsByTagName('body')[0].className='mediumText';
		this.blur();
		this.className = 'active';
		createCookie('BodyClass','mediumText',365);
		return false;
	}
	largeTextBtn.onclick = function(){
		smallTextBtn.className = mediumTextBtn.className = largeTextBtn.className = '';
		document.getElementsByTagName('body')[0].className='largeText';
		this.blur();
		this.className = 'active';
		createCookie('BodyClass','largeText',365);
		return false;
	}
	refresh_bg.onclick = function(){
		var i=parseInt(getCookie('BodyBackgroundImageIndex'));
		if(isNaN(i)) i=0;
		i++;
		if(i>4) i=0;
		document.getElementsByTagName('body')[0].style.backgroundImage="url('/images/bg/"+i+".jpg')";
		this.blur();
		createCookie('BodyBackgroundImageIndex',i,365);
		return false;
	}
}