var css_path = './_team/';
var css_name = '/_team.css';
var css_no = '0';
var css_file = css_path + css_no + css_name;


//スタイルシート差し替え.
$(function(){
	if($("#jstyle")){
		$("#jstyle").attr({href:css_file});
	}
});


//クッキーに書き出し.
function jstyle(cssurl){
	css_file = css_path + cssurl + css_name;
	$('#jstyle').attr({href:css_file});	
	$.cookie('style',css_file,{expires:30,path:'/'});
}

