$(document).ready(function()
{
	$(".colorbutton").click(function()
	{
		var styleName = $(this).attr('id');
		$('link[@rel*=style][@title]').each(function()
		{
			this.disabled = true;
			if(this.getAttribute('title') == styleName)
			{
				this.disabled = false;
			}
		});
		$.get("ajx/setcolor.php", {kleur: styleName}, function(data){void(0);});
		return false;
	});
});