$(document).ready(function(){
						   
	var tabContainers = $('div.subMenu > div');
	tabContainers.hide().filter(':first').show();
	
	$('div.subMenu ul a').click(function(){
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('div.subMenu ul a').removeClass('selected');
		$(this).addClass('selected'); 
		return false;
	}).filter(':first').click();
	
	/*FAQs*/
	$('div.faqsQuestion').click(function() {
		$(this).next().toggle();
		$(this).addClass('selected');
		return false;
	}).next().hide();
	$('div.faqsQuestion').mouseenter(function() {
		$(this).addClass('selected');
		return false;
	}).next().hide();
	$('div.faqsQuestion').mouseout(function() {
		$(this).removeClass('selected');
		return false;
	}).next().hide();
});