function get_randomCssNum()
{
    var ranCssNum= Math.floor(Math.random()*16);
    return ranCssNum;
}

function getaCss()
{
   var whichCss=get_randomCssNum();

    var cssName=new Array(16)
     // var cssName=new Array(Number of CSS you Have)
     cssName[0]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/1.css'>";
     cssName[1]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/2.css'>";
	 cssName[2]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/3.css'>";
     cssName[3]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/4.css'>";
	 cssName[4]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/5.css'>";
     cssName[5]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/6.css'>";
	 cssName[6]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/7.css'>";
     cssName[7]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/8.css'>";
     cssName[8]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/9.css'>";
     cssName[9]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/10.css'>";
     cssName[10]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/11.css'>";
     cssName[11]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/12.css'>";
     cssName[12]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/13.css'>";
     cssName[13]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/14.css'>";
     cssName[14]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/15.css'>";
     cssName[15]="<link rel='stylesheet' type='text/css' href='http://www.nuhelder.nl/wp-content/themes/helder/styles/16.css'>";	
	 
  	return cssName[whichCss]
  }
  document.write(getaCss());
