
	jQuery(document).ready(function() {

		//Default Action
		jQuery(".tab-icerik").hide(); //Hide all content
		jQuery("ul.tablar li:first").addClass("active").show(); //Activate first tab
		jQuery(".tab-icerik:first").show(); //Show first tab content
		
		//On Click Event
		jQuery("ul.tablar li").click(function() {
			jQuery("ul.tablar li").removeClass("active"); //Remove any "active" class
			jQuery(this).addClass("active"); //Add "active" class to selected tab
			jQuery(".tab-icerik").hide(); //Hide all tab content
			var activeTab = jQuery(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
			jQuery(activeTab).fadeIn(); //Fade in the active content
			return false;
		});

	});
	

	jQuery(document).ready(function() {

		//Default Action
		jQuery(".tab-icerik2").hide(); //Hide all content
		jQuery("ul.tablar2 li:first").addClass("active").show(); //Activate first tab
		jQuery(".tab-icerik2:first").show(); //Show first tab content
		
		//On Click Event
		jQuery("ul.tablar2 li").click(function() {
			jQuery("ul.tablar2 li").removeClass("active"); //Remove any "active" class
			jQuery(this).addClass("active"); //Add "active" class to selected tab
			jQuery(".tab-icerik2").hide(); //Hide all tab content
			var activeTab = jQuery(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
			jQuery(activeTab).fadeIn(); //Fade in the active content
			return false;
		});

	});
	
	
	
	
	

	jQuery(document).ready(function() {

		//Default Action
		jQuery(".tabs-icerik").hide(); //Hide all content
		jQuery("ul.tabslar li:first").addClass("active").show(); //Activate first tabs
		jQuery(".tabs-icerik:first").show(); //Show first tabs content
		
		//On Click Event
		jQuery("ul.tabslar li").click(function() {
			jQuery("ul.tabslar li").removeClass("active"); //Remove any "active" class
			jQuery(this).addClass("active"); //Add "active" class to selected tabs
			jQuery(".tabs-icerik").hide(); //Hide all tabs content
			var activetabs = jQuery(this).find("a").attr("href"); //Find the rel attribute value to identify the active tabs + content
			jQuery(activetabs).fadeIn(); //Fade in the active content
			return false;
		});

	});
	
	

	jQuery(document).ready(function() {

		//Default Action
		jQuery(".tabs-icerik2").hide(); //Hide all content
		jQuery("ul.tabslar2 li:first").addClass("active").show(); //Activate first tabs
		jQuery(".tabs-icerik2:first").show(); //Show first tabs content
		
		//On Click Event
		jQuery("ul.tabslar2 li").click(function() {
			jQuery("ul.tabslar2 li").removeClass("active"); //Remove any "active" class
			jQuery(this).addClass("active"); //Add "active" class to selected tabs
			jQuery(".tabs-icerik2").hide(); //Hide all tabs content
			var activetabs = jQuery(this).find("a").attr("href"); //Find the rel attribute value to identify the active tabs + content
			jQuery(activetabs).fadeIn(); //Fade in the active content
			return false;
		});

	});
	



