
////
//
//   1.
//      function get_randomCssNum()
//   2.
//      {
//   3.
//      var ranCssNum= Math.floor(Math.random()*5);
//   4.
//      //var ranCssNum= Math.floor(Math.random()*Number of CSS you Have);
//   5.
//      return ranCssNum;
//   6.
//      }
//   7.
//
//   8.
//      function getaCss()
//   9.
//      {
//  10.
//      var whichCss=get_randomCssNum();
//  11.
//
//  12.
//      var cssName=new Array(5)
//  13.
//      // var cssName=new Array(Number of CSS you Have)
//  14.
//      cssName[0]="<link rel='stylesheet' type='text/css' href='css/gabi_1.css'>";
//  15.
//      cssName[1]="<link rel='stylesheet' type='text/css' href='css/gabi_2.css'>";
//  16.
//      cssName[2]="<link rel='stylesheet' type='text/css' href='css/gabi_3.css'>";
//  17.
//      cssName[3]="<link rel='stylesheet' type='text/css' href='css/gabi_4.css'>";
//  18.
//      cssName[4]="<link rel='stylesheet' type='text/css' href='css/gabi_5.css'>";
//  19.
//      //I am using 5 CSS files in this example. you can add or remove ;)
//  20.
//      //for Add more CSS just add line like this
//  21.
//      //cssName[Next Number]="<link rel='stylesheet' type='text/css' href='CSS FILE URL'>";
//  22.
//      return cssName[whichCss]
//  23.
//      }
//  24.
//      document.write(getaCss());
