function rand(){
    return Math.round(Math.random()*(css.length-1));
}

var css = new Array(
	'<link rel="stylesheet" type="text/css" href="grass.css">',
	'<link rel="stylesheet" type="text/css" href="sand.css">',
	'<link rel="stylesheet" type="text/css" href="tarmac.css">'
);

rand = rand();

document.write(css[rand]);
