$(document).ready( function() {
	try{	

		$(".sub-tabs .tabPane").each(function(){
			$(this).find(".product-accordion > li > a").disclosurePanel();
		});
		
		$(".sub-tabs > ul").tabs("div.tabPane",{
			history: false, 
			api:false,
			current:'ui-tabs-selected'
		});
		
		var tabsApi = $(".tabs > ul").tabs("div.tabPane",{
			history: true,
			api:true,
			current:'ui-tabs-selected'
		});

	} catch (err) {
		$.log(err);
	}

});