
jQuery(document).ready(function() {
								
	//When page loads...
	$(".form_tab").hide(); //Hide all content
	
	$(".form_tab#socialmedia").show(); //Show first tab content

	//On Click Event
	$("ul.main_tabs li").click(function() {

		$("ul.main_tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".form_tab").hide(); //Hide all tab content

		var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).show(); //Fade in the active ID content
		return false;
	});
	
	//When page loads...
	$(".form_tab2").hide(); //Hide all content
	
	$(".form_tab2#community").show(); //Show first tab content

	//On Click Event
	$("ul.main_tabs2 li").click(function() {

		$("ul.main_tabs2 li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".form_tab2").hide(); //Hide all tab content

		var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).show(); //Fade in the active ID content
		return false;
	});
	});
	//On click li
	$(function() {
    $(".carousel").jCarouselLite({
        btnNext: "#c1r",
        btnPrev: "#c1l",
		easing: "easeOutQuad",
		visible: 1,
    });

});


