Blame view

renkei-graduate/functions/functions.js 234 Bytes
1 2 3 4 5 6 7 8 9 10 11
$(function() {
	$('#contents a.lightbox').lightBox();
});

$(function(){
	$("#jstyle").attr({href:$.cookie('style')});
});
function jstyle(cssurl){
	$('#jstyle').attr({href:cssurl});
	$.cookie('style',cssurl,{expires:30,path:'/'});
}