jQuery(document).ready(function($){
	var switcher = 'closed';

	$('.color-switcher-button').click(
		function(e){
			e.preventDefault();
		}
	);

	$('.color-switcher-button').mousedown(function() {
		if(switcher == 'closed') {
			$('#color-switcher').stop().animate({right: '0'}, 300);
			switcher = 'open';
		}
		else if(switcher == 'open') {
			$('#color-switcher').stop().animate({right: '-150'}, 300);
			switcher = 'closed';
		}
	});

	$('#color-switcher .switcher-list li a.scheme').click(
		function(e){
			e.preventDefault();
		}
	);

	$('#color-switcher .switcher-list li a.scheme').mousedown(function() {
		var scheme = $(this).attr("data-scheme");
		$('body').removeClass();
		$('body').addClass(scheme);
	});
});
