$(document).ready(function(){
	// en cok okunana ve on yorum		  
   var tabs = [];
    var tabContainers = [];
    $('#encokOnBaslik ul li a').each(function () {
		if (this.pathname.replace(/^\//,") == window.location.pathname.replace(/^\//,")) {
            tabs.push(this);
            tabContainers.push($(this.hash).get(0));
        }
    });
    
    $(tabs).click(function () {
		$(tabContainers).hide().filter(this.hash).show();			
		$(tabs).parent().removeClass('seciliSekme');
		$(this).parent().addClass('seciliSekme');

   return false;
	});			  



  });
