/*   really many kudos to http://www.alistapart.com/stories/n4switch/   */

	function chooseStyle (newstyle){
		var expdate = new Date();
		expdate.setTime(expdate.getTime() + (1000*3600*24*365));
		document.cookie = 'style=' + newstyle + '; expires=' + expdate.toGMTString() + '; path=/';
		self.location = self.location;
		return false;
	}
	
	function choseImage(img){
		if (document.cookie.indexOf('black')>=0)
			document.write('black'+img);
		else document.write('white'+img);
	}
	
	if (document.cookie.indexOf('black')>=0)
		document.write('<link rel="stylesheet" type="text/css" href="/style/plindy-black.css">\n' 
		   + '<link rel="alternate stylesheet" type="text/css" href="/style/plindy-white.css" title="cbiale tlo">\n');
	else{
		document.write('<link rel="stylesheet" type="text/css" href="/style/plindy-white.css">\n' 
		   + '<link rel="alternate stylesheet" type="text/css" href="/style/plindy-black.css" title="czarne tlo">\n');
	}
