$(document).ready(function() {
  // put all your jQuery goodness in here.
  $(".showMe").hide();
  $(".showMe").slideDown();
});

function showToggle(dit){
	$(dit).slideToggle();
}

function showValue(show){
	//alert(show);
	$(".group").slideUp();
	$("#" + show).slideDown();
}


$(document).ready(function() {
	// put all your jQuery goodness in here.
	$("table.sort td.more a").click( function() {
		$(".extra").hide();
		$(this).parent().children(".extra").slideDown();
	});
	
	$("table.sort td.more .extra .sluit").click( function() {
		$(".extra").slideUp();
	});
});