$(function()
{
	var linkList = $('#linkList');
	/* ---------
	
	TAB
	
	--------- */
	tabQuery.manager({
		linkMenu : linkList
	});
	
	$('#tab1').fadeIn();
	/* ---------
	
	jScrollPane
	
	--------- */
	var jSPoption = {
		showArrows : true,
		hideFocus : true
	};
	/* INITIAL */
	$('.scroll-pane').jScrollPane( jSPoption );
	/* TAB CLICK */
	linkList.find('a').bind( 'click', function()
	{
		$($(this).attr('href')).find('.scroll-pane').jScrollPane( jSPoption );
	});
});// CAPSULE


