/*<![CDATA[*/
        var anzahlCSS = 3;
		var nameCSS = 'http://www.flxism.com/col-';
		var anzahlSekunden = 3;

        function randomHeader() {
		    var count = 1;
			count += Math.floor(Math.random()*anzahlCSS);
		    $('link[name="firstswitch"]').attr('href', nameCSS + count + '.css');
			randomHeaderTimer();
		}
		function randomHeaderTimer() {
			window.setTimeout('randomHeader()', (anzahlSekunden*6000));
		}

		$(document).ready(function() {
		    randomHeaderTimer();
		});
/*]]>*/