/***********************************************************
 * StyleSwitcher
   * a swithcher for ALL browsers?!
 **********************************************************/

// Cookie
function chooseStyle (newstyle){
	var expdate = new Date();
	expdate.setTime(expdate.getTime() + (1000*3600*24*365));
	document.cookie = 'style=' + newstyle + '; expires=' + expdate.toGMTString() + '; path=/';
	//alert ('This style choice will persist for a year unless changed again.');

        try
        {
            // Also reload other frames.
            for(i = 0; i < parent.frames.length; i++)
            {
                if(parent.frames[i] == self)
                    continue;

                parent.frames[i].location = parent.frames[i].location;
            }
        } catch(e) { }

        self.location = self.location;
}

if(document.cookie.indexOf('style=0')>=0) 
  document.write('<link rel="stylesheet" type="text/css" href="http://www.maaltijden.info/templates/joomlafiles_green/css/default.css">\n');
else if (document.cookie.indexOf('style=2')>=0)
  document.write('<link rel="stylesheet" type="text/css" href="http://www.maaltijden.info/templates/joomlafiles_green/css/xlarge.css">\n');
else 
  document.write('<link rel="stylesheet" type="text/css" href="http://www.maaltijden.info/templates/joomlafiles_green/css/large.css">\n');