function init_selects() {
	$('.custom_select').each(function() {
		var text = $(this).find('option:selected').html();
		var html = '<span>' + text + '</span>';
		$(this).css({'opacity' : '0'});
		$(this).parent().append(html);
	});
	
	$('.custom_select').live('change', function() {
		var text = $(this).find('option:selected').html();
		var val = $(this).val();
		$(this).next().html(text);
		switch(val) {
			case '0' :
			break;
			
			case '1' :
				window.location = '../dark';
			break;
			
			default :
			break;
		}
	});
}

var flag = true;
var opened = true;
$(document).ready(function() {
	init_selects();
	
	$('#picker_close').live('click', function() {
		var block_left = (opened) ? -128 : 0;
		opened = !opened;
		
		if(flag) {
			flag = false;
			$('#color_picker').animate(
				{
					left : block_left
				},
				300,
				function() {
					flag = true;
				}
			);
		}
	});
});
