// JavaScript Document

/* Client Section */
$(document).ready(function() {
	$('#tab2-content').hide();
	$('a[@href*="#1"]').addClass('tb1-selected');
	$('a[@href*="#2"]').addClass('tab-button2');
	
	$('#tab1 a').click(function() {
		$('#tab1-content').fadeIn('slow');
		$('#tab2-content').hide();
		$('a[@href*="#2"]').removeClass('tb2-selected');
		$('a[@href*="#2"]').addClass('tab-button2');
		$('a[@href*="#1"]').removeClass('tab-button1');
		$(this).addClass('tb1-selected');
	});
	
	$('#tab2 a').click(function() {
		$('#tab2-content').fadeIn('slow');
		$('#tab1-content').hide();
		$('a[@href*="#1"]').removeClass('tb1-selected');
		$('a[@href*="#1"]').addClass('tab-button1');
		$('a[@href*="#2"]').removeClass('tab-button2');
		$(this).addClass('tb2-selected');
	});
});

/* Selling the Complex Section */
$(document).ready(function() {
	$('#SLKtab2-content').hide();
	$('a[@href*="#tab1"]').addClass('SLKselected');
	$('a[@href*="#tab2"]').addClass('SLKtab-button2');
	
	$('#SLKtab1 a').click(function() {
		$('#SLKtab1-content').fadeIn('slow');
		$('#SLKtab2-content').hide();
		$('a[@href*="#tab2"]').removeClass('SLKselected');
		$('a[@href*="#tab2"]').addClass('SLKtab-button2');
		$('a[@href*="#tab1"]').removeClass('SLKtab-button1');
		$(this).addClass('SLKselected');
	});
	
	$('#SLKtab2 a').click(function() {
		$('#SLKtab2-content').fadeIn('slow');
		$('#SLKtab1-content').hide();
		$('a[@href*="#tab1"]').removeClass('SLKselected');
		$('a[@href*="#tab1"]').addClass('SLKtab-button1');
		$('a[@href*="#tab2"]').removeClass('SLKtab-button2');
		$(this).addClass('SLKselected');
	});
});