function get_randomCssNum()
{
    var ranCssNum= Math.floor(Math.random()*16);
	//var ranCssNum= Math.floor(Math.random()*Number of CSS you Have);
    return ranCssNum;
}

function getaCss()
{
   var whichCss=get_randomCssNum();

    var cssName=new Array(14)
     // var cssName=new Array(Number of CSS you Have)
     cssName[0]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index1.css'>";
     cssName[1]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index2.css'>";
     cssName[2]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index3.css'>";   
     cssName[3]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index4.css'>";
     cssName[4]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index5.css'>";   
     cssName[5]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index6.css'>";
     cssName[6]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index7.css'>";
     cssName[7]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index8.css'>";
     cssName[8]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index9.css'>";
     cssName[9]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index10.css'>";
     cssName[10]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index11.css'>";
     cssName[11]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index12.css'>";
     cssName[12]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index13.css'>";
     cssName[13]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index14.css'>";
     cssName[14]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index15.css'>";
	 cssName[15]="<link rel='stylesheet' type='text/css' href='http://rebelsincontrol.com/rebelsincontrol/css/index16.css'>";
     //I am using 5 CSS files in this example. you can add or remove ;)
     //for Add more CSS just add line like this 
     //cssName[Next Number]="<link rel='stylesheet' type='text/css' href='CSS FILE URL'>";
  	return cssName[whichCss]
  }
  document.write(getaCss());