// switch stylesheet and call ajax doohicky to save pref

// thanks - http://www.alistapart.com/articles/alternate/
function switch_style(title) {
	var i, a, title;
	for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
		if(a.getAttribute("rel").indexOf("style") != -1
				&& a.getAttribute("title")) {
			a.disabled = true;
			if(a.getAttribute("title") == title) a.disabled = false;
		}
	}

	save_pref(title);

}

function save_pref(new_style) {
	var url = 'index.php?action=save_style_pref&style='+new_style;
	var ajax_handle = grab_ajax_handle();
	
	ajax_handle.open('GET', url, true);
	ajax_handle.send(null);
}
