$(document).ready(function(){
	$('#tabs div.topdiv').hide(); // Hide all divs
	$('#tabs div:first').show(); // Show the first div
	$('#tabs ul li:first').addClass('active'); // Set the class of the first link to active

	$('#tabs ul li a').click(function(){ //When any link is clicked
		$('#tabs ul li').removeClass('active'); // Remove active class from all links
		$(this).parent().addClass('active'); //Set clicked link class to active
		var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
		$('#tabs div.topdiv').hide(); // Hide all divs
		$(currentTab).fadeIn(); // Show div with id equal to variable currentTab
		return false;
	});
});

//haber tablari 
$(document).ready(function(){
	$('.haberler .haber_tab:eq(0)').css({	left: 10 } );
	$('.haberler .haber_tab:eq(1)').css({	left: 135 } );
	$('.haberler .haber_tab:eq(2)').css({	left: 260 } );
	
	select_button($('.haberler .haber_tab:eq(0)'));

	$('.haberler .haber_tab').click(function(){
		select_button($(this));
	});

	function select_button(button){
		
		$('.haberler .haber_tab .tab_bg').html('<img src="/_img/nonaktif_tab.png" />');
		
		button.find('.tab_bg').html('<img src="/_img/tab_normal.png" />');
		
		$rel = button.attr('rel');
		$('.haber_tab_content').hide();
		$('#'+$rel).fadeIn().css("display","block"); 
		
	}
});
//haber tablari bitti

function fix_rounded(v){ 
	$img = $(v).find('img:eq(0)');
    $height = $img.height();
    $(v).find('.rounded_body').height($height-20)
    $(v).height($img.height());
}

window.onload = function(){
	$.each($('.rounded'), function(k,v){
		fix_rounded(v)
    });

	$('.muzik_haber_tab').hide();
	$('.muzik_haber_tab:eq(0)').show();

	$('.content_sol_pagination a').click(function(){
		$r = $(this).attr('rel');
		$('.muzik_haber_tab').hide();
		$('.muzik_haber_tab').eq($r).show();

		$('.content_sol_pagination a').removeClass('in_pagi');
		$(this).addClass('in_pagi');

		return false;
	});
}
