
$(document).ready(function(){
	if($('.tabs').length > 0) {
		$.insert(URL+'/framework/jquery/ui/ui.tabs.js').ready(function(){
				$(".tabs").tabs(
					{
					collapsible: false,
					header: 'h6',
					ajaxOptions: { async: false },
					fx: { opacity: 'toggle' },
					idPrefix: 'ui-tabs-primary',
					event: 'click' 
					}
				);
		});
	}

});

