Do you mean an accordion navigation that opens on the first click and closes on the second click?
If you want to see a demo, here is the link:
http://codepen.io/cowardguy/pen/dGKEjy
You can check out the above link for a visual reference.
$("ul.otel-filtre-fiyat-tab li").click(function(){
/*
$(this).parents(".otel-tekli-listeleme").find(".otel-full-detay").slideToggle();
*/
var number = $(this).index();
$("ul.otel-filtre-fiyat-tab li").removeClass("tab-aktif-hover");
$(this).parents(".otel-tekli-listeleme").find(".otel-tab-icerik").hide().eq(number).slideDown("fast");
$(this).parents(".otel-tekli-listeleme").find("ul.otel-filtre-fiyat-tab li").eq(number).addClass("tab-aktif-hover");
return false;
});
You can click on the highlighted area.