$(document).ready(function() {
	$('.styleswitch').click(function()
	{
		switchStylestyle(this.getAttribute("rel"));
		return false;
	});
	var c = readCookie('style');
	if (c) {
	  switchStylestyle(c);
	}
});

function switchStylestyle(styleName)
{
	$('link[@rel*="style"][@title]').each(function(i) 
	{
		this.disabled = true;
		if (this.getAttribute('title') == styleName) {
		  this.disabled = false;
		}
	});
	createCookie('style', styleName, 365);
}
