$(function() {
$("ul.referans").each(function() {
$("li:gt(4)", this).hide(); /* :gt() is zero-indexed */
$("li:nth-child(5)", this).after("TÜMÜNÜ GÖSTER"); /* :nth-child() is one-indexed */
});
$("li.more a").live("click", function() {
var li = $(this).parents("li:first");
li.parent().children().show();
li.remove();
return false;
});
});
$('.accordion-heading a').each(function(){
$(this).click(function(){$('.accordion-heading a').addClass('collapsed');})
});