$(function() {
    $(".terciheden").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
});








$(document).ready(function(){
		$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
	});









$(document).ready(function() {
	$(".tab_content").hide();
	$(".tab_content:first").show(); 
	$("ul.tablar li:first").addClass("active");
	
	$("ul.tablar li").click(function () {
		$("ul.tablar li").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide();

		var index = $("ul.tablar li").index(this);
		$('.tab_content').eq(index).fadeIn(500);
	});
});











$(function() {
	$(".duyuru").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 1,
		auto:400,
		speed:3000
	});
});






