//Tab menu top
	$(function () {
		var tabContainers = $('ul.sublinks'); // change div#forms to your new div id (example:div#pages) if you want to use tabs on another page or div.
		tabContainers.hide().filter(':first').show();
		
		$('ul.switcherTabs2 a.paren').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('ul.switcherTabs2 li').removeClass('selected');
			$(this).parent().addClass('selected');
			return false;
		}).filter(':first').click();
	});