if($.cookie("css")) {
	$("link[type='text/css']").attr("href",$.cookie("css"));
}
$(document).ready(function() { 
	$("a.css").click(function() { 
		$('body').stop().animate({"opacity":"0"},200);
		$("link[type='text/css']").attr("href",$(this).attr('rel'));
		if(typeof $.appendContentStyle !== 'undefined'){
			$.appendContentStyle();
		}
		$.cookie("css",$(this).attr('rel'), {expires: 365, path: '/'});
		delete stButtons.button_css_called;
		stButtons.makeButtons();
		$('body').stop().animate({"opacity":"1"},300);
		return false;
	});
});
