function createStyleSheetLinks(){
	var cssArray = new Array('stylesheet_silver.css','stylesheet_tan.css','stylesheet_green.css');
	j=parseInt(Math.random()*cssArray.length);j=(isNaN(j))?0:j;
	var currentCSS = cssArray[j];
	document.write('<link rel="stylesheet" href="'+currentCSS+'" type="text/css">');
	
	var colorDir = "";
	if (currentCSS.indexOf('silver') != -1){
		colorDir = "silver/"
	}
	else if (currentCSS.indexOf('tan') != -1){
		colorDir = "tan/"
	}
	else if (currentCSS.indexOf('green') != -1){
		colorDir = "green/"
	}
	
	var cssBannerArray = new Array('fishing1.css','hunting1.css', 'fishing2.css','hunting2.css', 'fishing3.css','hunting3.css', 'fishing4.css', 'fishing5.css', 'fishing6.css', 'fishing7.css', 'fishing8.css', 'fishing9.css');
	j=parseInt(Math.random()*cssBannerArray.length);j=(isNaN(j))?0:j;
	document.write('<link rel="stylesheet" href="images/banners/'+ colorDir+cssBannerArray[j]+'" type="text/css">');
}