function colorswitch(color)
{
	$('page').className = color;
	switch(color)
	{
		case 'pink': hex = 'F06EAA'; hex2 = 'b1115a'; new Effect.Move('color-notch', { x: 25, y: 37, mode: 'absolute', duration: 0.5 }); break;
		case 'blue': hex = '879fd2'; hex2 = '697faf'; new Effect.Move('color-notch', { x: 68, y: 37, mode: 'absolute', duration: 0.5 }); break;
	}
	if (window.loadvideos) loadvideos(hex);
	embed_color = hex;
	if (window.showvideo && current_video_id != '') showvideo(current_video_id, true);
	if ($('podcast-player')) $('podcast-player').changeColors('0x'+hex, '0x'+hex2);
	createCookie('wp-wsm-color_'+COOKIEHASH, color, 365);
	return false;
}