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

