var $j = jQuery.noConflict();

$j(function() {
    
	
	$j("ul.tabs li").click(function() {
	
		
		$j("ul.tabs li").removeClass("active"); 
		$j(this).addClass("active"); 

		$j(".tab_details_box").hide(); //Hide all tab content

		var activeTab = $j(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$j(activeTab).fadeIn(); //Fade in the active ID content
		return false;
		
	});
	
	
	$j("ul.tabs li").eq(0).trigger('click');
	
	
});
