$(document).ready(function(){

	set_heights();
	postnavbar();
	accordion();
	hot_news();
	
	/* yazarlar aras*/
	$("#other_authors").change(function(){
		
		var url = $(this).val();
	
		if(url=="0") return false;
	
		window.location = url;
		
	})

	if($(".a-con").height() > $(".a-bar").height()) $(".a-bar").css('height',$(".a-con").height()+'px');	
})


/* yazar filtreleme */
function filter_authors(){

	var data = $("#author_filter").serialize();
	
	window.location = '/yazar/filtre/?'+data;	
}



