function get_randomCssNum(){
  var ranCssNum= Math.floor(Math.random()*4);
  return ranCssNum;
}
function getaCss(){
  var whichCss=get_randomCssNum();
  var cssName=new Array(4)
    cssName[0]="<link rel='stylesheet' type='text/css' href='/css/index/skin_1.css'>";
    cssName[1]="<link rel='stylesheet' type='text/css' href='/css/index/skin_2.css'>";
    cssName[2]="<link rel='stylesheet' type='text/css' href='/css/index/skin_3.css'>";
    cssName[3]="<link rel='stylesheet' type='text/css' href='/css/index/skin_4.css'>";
  return cssName[whichCss]
}
document.write(getaCss());
