$(document).ready(function(){
	$('.option').hide();
	$('.selected').show();
	
	$('.selected').click(function(){
		$('.option').toggle();
		$('.selected').show();
	})
	
	$('.select').prepend($('.selected'));
	
	
	// $('.option:gt(0)').click(function(){
	// 	$(this).hide();
	// })
	
	// $('#switcher').animate({
	// 	'height': '5px'
	// })


	// $('#switcher').hover(
	// 	function() {
	// 		$(this).animate({
	// 			'height': '25px'
	// 		})
	// 	},
	// 	function() {
	// 		$(this).css('height', '5px');		
	// 	}	
	// )
	// 
	// $('#hideswitcher').click(function(e){
	// 	e.preventDefault();
	// 		$('#switcher').hide();
	// })
	
	
})