$(document).ready(function() {

	$('.ext-opt').slideUp();
	$('div.ext-opt-head').click(function(){
		if ( $(this).children('.arrow').length > 0 ) {
			var clicked = false;
		} else{ if($(this).children('.arrow-close').length > 0 ) {
			var clicked = true;
		}}
		if(!clicked){
			$(this).children('.arrow').addClass('arrow-close');
			$(this).children('.arrow').removeClass('arrow');
			clicked = true;
		} else {
			$(this).children('.arrow-close').addClass('arrow');
			$(this).children('.arrow-close').removeClass('arrow-close');
			clicked = false;
		}
		
		$('div#option-values-id-'+this.id).slideToggle('fast');
	});
	$('a.remove-opt-link').click(function(){
		
		$(this).children('.remove-opt-link .mnu-loader').show();
		/* $('.'+this.id).fadeOut("slow"); */
		
	});
});