
style=$.cookie('style');
if(style != null) {
$(function(){
$("#fstyle").attr({href:$.cookie('style')});
});
function fstyle(cssurl){
$('#fstyle').attr({href:cssurl});
$.cookie('style',cssurl,{expires:30,path:'/'});
}
}
