(function($) { 
  $(document).ready(function() {

	//Default Action
	$(".carousel_content").hide(); //Hide all content
	//$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".carousel_content:first").show(); //Show first tab content
	
	//On Click Event
	$("#mygallery div.panel a").click(function() {
		$(".carousel_content").hide(); //Hide all tab content
		var activeTab = $(this).attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		return false;
	});
	
	
	
	//Home carousel init
	
	$('#container-carousel-switcher ul li').mouseover(function(){$('div.title_event_container',this).show();});
    $('#container-carousel-switcher ul li').mouseout(function(){$('div.title_event_container',this).hide();});
    $('#container-carousel-switcher ul li').click(function(){
    	$('#carousel-part-one').load(jsroot+"/inc/ajax-home-carousel.php?post_id="+$(this).attr("rel"));
    });
	
	 $("#container-carousel").jCarouselLite({
       	circular: false,
        btnNext: ".next",
        btnPrev: ".prev"
    });
                    
    // Homepage pagination for the widgets
    $("#latest-news").quickPager({pageSize: 4});
    $("#tab1 ul").quickPager({pageSize: 2});
			 	    
});
})(ecd.jq);

