$(document).ready(function() {

	$('.editbox').children('.editmodebox').hide();

	$('.editbox').children('.show-options').toggle(
		function() {
			$(this).siblings('.editmodebox').show();
			$(this).html('Piilota asetukset');
		},
		function() {
			$(this).siblings('.editmodebox').hide();
			$(this).html('Näytä asetukset');
		}
	);

	/*$('.editmode-object-selector').children().children('table').each(function() {
		$('td b', this).each(function() {
			$(this).parent().hide();
		});

		$('.wetextinput', this).each(function() {
			$(this).css('width', '100px');
		});
	});*/

});